// Bomberman.hpp #pragma once #include #include "Position.hpp" #include "Bomb.hpp" class Bomberman { private: Position _position; unsigned short _numberOfBombs; Bomb _bomb; public: Bomberman(){std::cout << "Bomberman created!" << std::endl;} Bomberman(const Position &position, unsigned short numberOfBombs); ~Bomberman(){std::cout << "Bomberman destroyed!" << std::endl;}; };