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/Butin/Butin.hpp

27 lines
574 B
C++
Raw Normal View History

#pragma once
#include "../Joueur.hpp"
#include "PlateauButin.hpp"
2023-12-03 17:27:06 +01:00
class Butin {
friend std::ostream &operator<<(std::ostream &, const Butin &);
// Plateau de jeu
2023-12-03 17:27:06 +01:00
PlateauButin plateau;
// Joueurs
2023-12-03 17:27:06 +01:00
Joueur &joueur1;
Joueur &joueur2;
Joueur &joueurCourant;
public:
2023-12-13 12:01:59 +01:00
Butin(Joueur &joueur1, Joueur &joueur2); // constructor
virtual ~Butin(); // destructor
Butin(const Butin &); // copy constructor
const Butin &operator=(const Butin &); // copy assignement
// Fonction d'initialisation du jeu
void init();
};