ouverture de fenetre possible

faire le Game::run
This commit is contained in:
YANNIS
2025-05-29 18:25:10 +02:00
parent bd9bc5e2e2
commit 62a0b9719f
10 changed files with 91 additions and 68 deletions
+7 -2
View File
@@ -1,8 +1,13 @@
#include "Bomberman.hpp"
#include "Game.hpp"
#include <iostream>
int main (void){
Bomberman bomberman;
std::cout << bomberman << std::endl;
try{
Game game;
} catch (const std::exception& e) {
std::cerr << "Error: " << e.what() << std::endl;
return 1;
}
return 0;
}