1 //
2 // Copyright(C) 1993-1996 Id Software, Inc.
3 // Copyright(C) 2005-2014 Simon Howard
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // DESCRIPTION:
16 //	Put all global tate variables here.
17 //
18 
19 #include <stdio.h>
20 
21 #include "doomstat.h"
22 
23 
24 // Game Mode - identify IWAD as shareware, retail etc.
25 GameMode_t gamemode = indetermined;
26 GameMission_t	gamemission = doom;
27 GameVersion_t   gameversion = exe_strife_1_31;
28 const char *gamedescription;
29 
30 // Set if homebrew PWAD stuff has been added.
31 boolean	modifiedgame;
32 
33 
34 
35 
36