rand effacé

This commit is contained in:
Emma 2024-01-12 02:38:53 +01:00
parent a49632d3eb
commit 0e64606f88

View file

@ -5,12 +5,8 @@
Dames::Dames(Joueur &j1, Joueur &j2)
: Jeu(j1), plateau(PlateauDames(j1, j2)), joueur2(j2) {
std::srand(static_cast<unsigned int>(time(0)));
const int r = std::rand() % 2;
if (r == 0) {
joueurCourant = &j1;
} else {
joueurCourant = &j2;
}
etape = EnJeu;
std::cout << "Joueur " << joueurCourant->getNum()