Files
2025-05-29 19:20:01 +02:00

15 lines
232 B
C++

#include "Bomberman.hpp"
#include "Game.hpp"
#include <iostream>
int main (void){
try{
Game game;
game.Run();
} catch (const std::exception& e) {
std::cerr << "Error: " << e.what() << std::endl;
return 1;
}
return 0;
}