#pragma once #include class Bomberman { private: int _x, _y; unsigned short _maxBomb = 1; unsigned short _maxRange = 1; unsigned short _bombPlanted = 0; float _speed = 1.0f; bool _isAlive = true; bool _isInvincible = false; public: Bomberman() = default; ~Bomberman() = default; friend std::ostream& operator<<(std::ostream& os, const Bomberman& b); };