9 lines
136 B
C++
9 lines
136 B
C++
#include "Bomberman.hpp"
|
|
#include <iostream>
|
|
|
|
int main (void){
|
|
Bomberman bomberman;
|
|
std::cout << bomberman << std::endl;
|
|
return 0;
|
|
}
|