rand effacé
This commit is contained in:
parent
a49632d3eb
commit
0e64606f88
1 changed files with 0 additions and 4 deletions
|
@ -5,12 +5,8 @@
|
||||||
Dames::Dames(Joueur &j1, Joueur &j2)
|
Dames::Dames(Joueur &j1, Joueur &j2)
|
||||||
: Jeu(j1), plateau(PlateauDames(j1, j2)), joueur2(j2) {
|
: Jeu(j1), plateau(PlateauDames(j1, j2)), joueur2(j2) {
|
||||||
std::srand(static_cast<unsigned int>(time(0)));
|
std::srand(static_cast<unsigned int>(time(0)));
|
||||||
const int r = std::rand() % 2;
|
|
||||||
if (r == 0) {
|
|
||||||
joueurCourant = &j1;
|
joueurCourant = &j1;
|
||||||
} else {
|
|
||||||
joueurCourant = &j2;
|
joueurCourant = &j2;
|
||||||
}
|
|
||||||
etape = EnJeu;
|
etape = EnJeu;
|
||||||
|
|
||||||
std::cout << "Joueur " << joueurCourant->getNum()
|
std::cout << "Joueur " << joueurCourant->getNum()
|
||||||
|
|
Reference in a new issue