first commit

This commit is contained in:
YANNIS
2025-05-29 16:06:07 +02:00
commit 33c6f3ccff
6 changed files with 102 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// Bomberman.hpp
#pragma once
#include <iostream>
#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;};
};