Files

15 lines
275 B
C++

#include "include/Game.h"
#include <exception>
#include <iostream>
int main () {
try {
Game game;
game.run();
return 0;
} catch ( const std::exception &e ) {
std::cerr << "Fatal Error: " << e.what() << "\n";
return 1;
}
}