summaryrefslogtreecommitdiffstats
path: root/src/core/Core.hpp
blob: 5348e4eaffe96beb14299d8fd7669dd8bab82697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "../gamestate/GameState.hpp"
#include "../network/NetworkClient.hpp"
#include <easylogging++.h>


class Core {
    GameState *gameState;
    NetworkClient *client;

public:
    Core();
    ~Core();
    void MainLoop();
};