X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgameconfig.hpp;h=1602787991ab1e71e14163d22771baaa205ff411;hb=8e38c01a8c4f2937c3f53d46d3034b0f55ba4316;hp=eb9a32022e435d023f966d8285fa58b8bc66918e;hpb=2f9e19ce4e01dc769ae7b2a7129109e0e81a6b5b;p=supertux.git diff --git a/src/gameconfig.hpp b/src/gameconfig.hpp index eb9a32022..160278799 100644 --- a/src/gameconfig.hpp +++ b/src/gameconfig.hpp @@ -1,7 +1,7 @@ -// $Id: configfile.h 2293 2005-03-25 20:39:56Z matzebraun $ +// $Id$ // -// SuperTux - A Jump'n Run -// Copyright (C) 2004 Michael George +// SuperTux= +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -31,11 +31,11 @@ public: void save(); /** screen width in pixel (warning: this is the real screen width+height, - * supertux is using a logical width+height and not this one) + * you should use the logical SCREEN_WIDTH and SCREEN_HEIGHT for your + * rendering code.) */ int screenwidth; int screenheight; - bool use_gl; bool use_fullscreen; bool show_fps; @@ -43,8 +43,11 @@ public: bool music_enabled; bool cheats_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; };