summaryrefslogtreecommitdiffstats
path: root/src/GlobalState.hpp
blob: 29ab7a01d4c6866594da7c21d552610bee2298dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <memory>
#include <thread>

class NetworkClient;
class GameState;
class Render;

struct GlobalState {
    static GameState *GetGameState();
    static Render *GetRender();
    static void Exec();
};