summaryrefslogtreecommitdiffstats
path: root/src/Game.hpp
blob: f7efd1157ca215bafda6935acd523a8b63ad7d39 (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
#pragma once

class GameState;
class Render;
class NetworkClient;
class LoopExecutionTimeController;

enum class State {
	InitialLoading,
	MainMenu,
	Loading,
	Playing,
	Paused,
	Inventory,
	Chat,
};

void RunGame();

State GetState();

void SetState(State newState);

GameState* GetGameState();

Render* GetRender();

NetworkClient* GetNetworkClient();

LoopExecutionTimeController *GetTime();