summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 2644038ab1d9a96609f0a02e57696896953e3634 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "core/Core.hpp"
#include "gamestate/Game.hpp"

INITIALIZE_EASYLOGGINGPP

int main(){
    Game game;
    game.Exec();
}