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