This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/includes/Plateau.hpp
Mylloon 0f76d1a947
ajouts d’attribut &co
Co-authored-by: Emma <emmbotti@gmail.com>
2023-11-21 12:33:04 +01:00

30 lines
624 B
C++

#ifndef PLATEAU
#define PLATEAU
#include "../includes/Piece.hpp"
#include <iostream>
class Plateau {
friend std::ostream &operator<<(std::ostream &, const Plateau &);
// Taille du plateau
int taille;
// Tableau représentant le plateau de jeu
Piece ***plateau;
public:
Plateau(int taille); // constructor
virtual ~Plateau(); // destructor
Plateau(const Plateau &); // copy constructor
const Plateau &operator=(const Plateau &); // copy assignement
// Fonction pour initialiser le plateau
// Fonction pour afficher le plateau
// Fonction pour modifier le plateau
};
#endif