15 lines
232 B
C++
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;
|
|
}
|