summaryrefslogtreecommitdiff
path: root/src/game/game_info.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game_info.hpp')
-rw-r--r--src/game/game_info.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/game_info.hpp b/src/game/game_info.hpp
index 8fe588dd0..3d42d3379 100644
--- a/src/game/game_info.hpp
+++ b/src/game/game_info.hpp
@@ -41,8 +41,11 @@ public:
*/
const char *GetAPIVersion() const { return this->api_version; }
+ /* virtual */ bool IsDeveloperOnly() const { 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.
};