X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgameconfig.hpp;h=be406bd2c4ed1bf74dc3f069cfedb4ec233a41a4;hb=69f1f633dec2d8a8f1286cf072b6725c75eaeb6a;hp=ab639d86a98bf30681f3814c136a264fed433faa;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/gameconfig.hpp b/src/gameconfig.hpp index ab639d86a..be406bd2c 100644 --- a/src/gameconfig.hpp +++ b/src/gameconfig.hpp @@ -26,7 +26,7 @@ class Config public: Config(); ~Config(); - + void load(); void save(); @@ -36,15 +36,19 @@ public: */ int screenwidth; int screenheight; + float aspect_ratio; bool use_fullscreen; bool show_fps; bool sound_enabled; bool music_enabled; - bool cheats_enabled; + bool console_enabled; + + int random_seed; // initial random seed. 0 ==> set from time() /** this variable is set if supertux should start in a specific level */ std::string start_level; + bool enable_script_debugger; std::string start_demo; std::string record_demo; };