File diff r23496:661d21df67d7 → r23497:a0ab44ebd2fa
src/game/game_info.hpp
Show inline comments
 
@@ -37,13 +37,13 @@ public:
 

	
 
	/**
 
	 * Get the API version this Game is written for.
 
	 */
 
	const char *GetAPIVersion() const { return this->api_version; }
 

	
 
	/* virtual */ bool IsDeveloperOnly() const { return this->is_developer_only; }
 
	bool IsDeveloperOnly() const override { return this->is_developer_only; }
 

	
 
private:
 
	int min_loadable_version; ///< The Game can load savegame data if the version is equal or greater than this.
 
	bool is_developer_only;   ///< Is the script selectable by non-developers?
 
	const char *api_version;  ///< API version used by this Game.
 
};