endgame todo

This commit is contained in:
Mylloon 2024-01-07 03:16:13 +01:00
parent 604e66c30c
commit d5776ac144
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -214,14 +214,20 @@ void Safari::event(const int x, const int y) {
} }
if (deplacerAnimal && placerBarriere) { if (deplacerAnimal && placerBarriere) {
// Le joueur a fini son tour // TODO: Vérification partie terminée
// Réinitialise les variables if (false) {
deplacerAnimal = false; etape = Fini;
placerBarriere = false; Ecran::printMessage("Partie terminée !");
} else {
// Le joueur a fini son tour
// Réinitialise les variables
deplacerAnimal = false;
placerBarriere = false;
// Donne la main au joueur suivant // Donne la main au joueur suivant
changerJoueurCourant(); changerJoueurCourant();
Ecran::printMessage(msgTonTour()); Ecran::printMessage(msgTonTour());
}
} }
break; break;
} }