X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgameconfig.hpp;h=f4cb884c670dfc36ed05a7562cd3c3b1068c5905;hb=aec9bf199857d0ae1a5dc54cd96ae37177493deb;hp=ab639d86a98bf30681f3814c136a264fed433faa;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/gameconfig.hpp b/src/gameconfig.hpp index ab639d86a..f4cb884c6 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,20 @@ public: */ int screenwidth; int screenheight; + float aspect_ratio; bool use_fullscreen; + bool try_vsync; 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; };