re3/src/Game.h

16 lines
156 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;
};