mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 06:35:40 +00:00
31 lines
656 B
C++
31 lines
656 B
C++
#pragma once
|
|
|
|
enum eLevelName
|
|
{
|
|
LEVEL_NONE = 0,
|
|
LEVEL_INDUSTRIAL,
|
|
LEVEL_COMMERCIAL,
|
|
LEVEL_SUBURBAN
|
|
};
|
|
|
|
class CGame
|
|
{
|
|
public:
|
|
static int &currLevel;
|
|
static bool &bDemoMode;
|
|
static bool &nastyGame;
|
|
static bool &frenchGame;
|
|
static bool &germanGame;
|
|
static bool &noProstitutes;
|
|
static bool &playingIntro;
|
|
|
|
static void Process(void);
|
|
static Bool InitialiseOnceBeforeRW(void);
|
|
static Bool InitialiseRenderWare(void);
|
|
static void ShutdownRenderWare(void);
|
|
static void FinalShutdown(void);
|
|
static void ShutDown(void);
|
|
static void ShutDownForRestart(void);
|
|
static void InitialiseWhenRestarting(void);
|
|
static Bool InitialiseOnceAfterRW(void);
|
|
};
|