blob: b51bb81886f4118d3d5a04130a78d1e854efc938 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <iostream>
#include "Game.hpp"
int main() {
try {
Game game;
game.Exec();
} catch (int e) {
std::cerr << "Catch exception " << e << std::endl;
}
return 0;
}
|