Files
bomberman/main.cpp
T
2025-05-29 16:53:26 +02:00

9 lines
136 B
C++

#include "Bomberman.hpp"
#include <iostream>
int main (void){
Bomberman bomberman;
std::cout << bomberman << std::endl;
return 0;
}