11 lines
367 B
C++
11 lines
367 B
C++
//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;
|
|
}
|