re3-wiiu/src/Game.h

32 lines
656 B
C
Raw Normal View History

2019-05-15 16:52:37 +02:00
#pragma once
enum eLevelName
{
LEVEL_NONE = 0,
LEVEL_INDUSTRIAL,
LEVEL_COMMERCIAL,
LEVEL_SUBURBAN
};
class CGame
{
public:
static int &currLevel;
2019-05-31 11:44:43 +02:00
static bool &bDemoMode;
static bool &nastyGame;
static bool &frenchGame;
static bool &germanGame;
static bool &noProstitutes;
2019-06-13 02:35:26 +02:00
static bool &playingIntro;
2019-05-31 11:44:43 +02:00
static void Process(void);
2019-05-31 19:02:26 +02:00
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);
2019-05-15 16:52:37 +02:00
};