1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 11:23:13 +00:00
re3/src/Game.h

20 lines
235 B
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#pragma once
enum eLevelName
{
LEVEL_NONE = 0,
LEVEL_INDUSTRIAL,
LEVEL_COMMERCIAL,
LEVEL_SUBURBAN
};
class CGame
{
public:
static int &currLevel;
2019-05-31 09:44:43 +00:00
static bool &bDemoMode;
static bool &nastyGame;
static void Process(void);
2019-05-15 14:52:37 +00:00
};