mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 22:18:59 +00: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;
|
||
|
};
|