blob: b3b463587fd0b1f4bcd7c79c09c52488749dd4d6 (
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
|
#pragma once
class NetworkClient;
class GameState;
class Render;
enum class State {
InitialLoading,
MainMenu,
Loading,
Playing,
Paused,
Inventory,
Chat,
};
struct GlobalState {
static GameState *GetGameState();
static Render *GetRender();
static void Exec();
static State GetState();
static void SetState(const State &newState);
};
|