Files
bomberman/Bomberman.cpp
T
2025-05-29 16:06:07 +02:00

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;
}