summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 74007c33eb59744140892a785582cb31721728c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include "Game.hpp"
#include "graphics/AssetManager.hpp"

int main() {
    try {
        Game game;
        game.Exec();
    } catch (int e) {
        std::cerr << "Catch exception " << e << std::endl;
    }
    return 0;
}