Files
bomberman/Bomberman.hpp
YANNIS 62a0b9719f ouverture de fenetre possible
faire le Game::run
2025-05-29 18:25:10 +02:00

18 lines
390 B
C++

#pragma once
#include<iostream>
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);
};