make it private
This commit is contained in:
parent
92a6aafce2
commit
8fd705eb0c
1 changed files with 3 additions and 3 deletions
|
@ -43,6 +43,9 @@ class Butin : private Jeu {
|
||||||
// Change de joueur courant
|
// Change de joueur courant
|
||||||
void changerJoueurCourant();
|
void changerJoueurCourant();
|
||||||
|
|
||||||
|
// Renvoie le nombre de points des joueurs 1 et 2
|
||||||
|
std::pair<int, int> calculpoints(const bool finPartie = false) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Butin(Joueur &joueur1, Joueur &joueur2); // constructor
|
Butin(Joueur &joueur1, Joueur &joueur2); // constructor
|
||||||
virtual ~Butin(); // destructor
|
virtual ~Butin(); // destructor
|
||||||
|
@ -55,7 +58,4 @@ public:
|
||||||
|
|
||||||
// Fonction d'évènement
|
// Fonction d'évènement
|
||||||
void event(const int x, const int y) override;
|
void event(const int x, const int y) override;
|
||||||
|
|
||||||
// Renvoie le nombre de points des joueurs 1 et 2
|
|
||||||
std::pair<int, int> calculpoints(const bool finPartie = false) const;
|
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue