summaryrefslogblamecommitdiffstats
path: root/src/Game.hpp
blob: f7efd1157ca215bafda6935acd523a8b63ad7d39 (plain) (tree)
1
2
3
4
5
6
7
8

            

                
                    
                                  
 
                  






                       

  









                              


                                      
#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();