you can compare colors now
[supertux.git] / src / gameconfig.hpp
index 109df1a..f4cb884 100644 (file)
@@ -26,7 +26,7 @@ class Config
 public:
   Config();
   ~Config();
-  
+
   void load();
   void save();
 
@@ -36,12 +36,16 @@ 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;