summaryrefslogtreecommitdiffstats
path: root/src/Game.h
blob: 279c38070bce06bf050a2fd8648d5cfb3ed3ae82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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);
};