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
};