mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
16 lines
156 B
C
16 lines
156 B
C
|
#pragma once
|
||
|
|
||
|
enum eLevelName
|
||
|
{
|
||
|
LEVEL_NONE = 0,
|
||
|
LEVEL_INDUSTRIAL,
|
||
|
LEVEL_COMMERCIAL,
|
||
|
LEVEL_SUBURBAN
|
||
|
};
|
||
|
|
||
|
class CGame
|
||
|
{
|
||
|
public:
|
||
|
static int &currLevel;
|
||
|
};
|