first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
//Bomberman.cpp
|
||||
#include "Bomberman.hpp"
|
||||
|
||||
Bomberman::Bomberman(const Position &position, unsigned short numberOfBombs)
|
||||
: _position(position), _numberOfBombs(numberOfBombs) {
|
||||
std::cout << "Bomberman created at position ("
|
||||
<< _position.getX() << ", " << _position.getY()
|
||||
<< ") with " << _numberOfBombs
|
||||
<< " bombs!" << std::endl;
|
||||
}
|
||||
Reference in New Issue
Block a user