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

28 lines
585 B
C++
Raw Normal View History

#pragma once
#include <iostream>
2023-12-03 17:27:06 +01:00
#include "../includes/Joueur.hpp"
#include "../includes/PlateauButin.hpp"
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-03 17:27:06 +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