aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.cpp
blob: 94e60c342cdcbfde8eeb7b6782d1c610e3b5ac46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "backend/print.h"
#include "backend/Exception.h"

#include "GameController.h"

using namespace std;

int main() {
	try {
		GameController game;
		return game.main();
	} catch (Exception & e) {
		lprtf("FOUT: %s\n", e.what());
		return EXIT_FAILURE;
	}
}