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

34 lines
767 B
C++
Raw Normal View History

#pragma once
#include <iostream>
#include "../Joueur.hpp"
#include "PieceSafari.hpp"
#include "PlateauSafari.hpp"
2023-12-10 15:03:07 +01:00
class Safari {
friend std::ostream &operator<<(std::ostream &, const Safari &);
// Plateau de jeu
2023-12-10 15:03:07 +01:00
PlateauSafari plateau;
2023-12-13 12:01:59 +01:00
// Barrières
2023-12-10 15:03:07 +01:00
std::vector<PieceSafari *> barrieres;
// Joueurs
2023-12-10 15:03:07 +01:00
Joueur &joueur1;
Joueur &joueur2;
Joueur &joueur3;
Joueur &joueurCourant;
public:
2023-12-13 12:01:59 +01:00
Safari(Joueur &joueur1, Joueur &joueur2, Joueur &joueur3); // constructor
virtual ~Safari(); // destructor
Safari(const Safari &); // copy constructor
const Safari &operator=(const Safari &); // copy assignement
2023-12-10 15:03:07 +01:00
// Fonction d'initialisation du jeu
void choixAnimal(std::string animal);
};