// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // $Id: doomstat.cpp 443 2007-11-03 02:57:59Z mike $ // // Copyright (C) 1998-2006 by Randy Heit (ZDoom). // Copyright (C) 2006-2007 by The Odamex Team. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // DESCRIPTION: // Put all global state variables here. // //----------------------------------------------------------------------------- #include #include #include "doomstat.h" #include "c_cvars.h" // Game Mode - identify IWAD as shareware, retail etc. GameMode_t gamemode = undetermined; GameMission_t gamemission = doom; // Language. Language_t language = english; // Set if homebrew PWAD stuff has been added. BOOL modifiedgame; // Show developer messages if true. CVAR (developer, "0", 0) VERSION_CONTROL (doomstat_cpp, "$Id: doomstat.cpp 443 2007-11-03 02:57:59Z mike $")