follow up of last commit
This commit is contained in:
parent
d27e903713
commit
70b61ef521
1 changed files with 2 additions and 2 deletions
|
@ -1,14 +1,14 @@
|
||||||
#include "../includes/Butin.hpp"
|
#include "../includes/Butin.hpp"
|
||||||
|
|
||||||
Butin::Butin(Joueur &j1, Joueur &j2)
|
Butin::Butin(Joueur &j1, Joueur &j2)
|
||||||
: plateau(PlateauButin(8)), joueur1{j1}, joueur2{j2}, joueurCourant{j1} {
|
: plateau(PlateauButin()), joueur1{j1}, joueur2{j2}, joueurCourant{j1} {
|
||||||
plateau.initialiserPlateau(j1, j2);
|
plateau.initialiserPlateau(j1, j2);
|
||||||
}
|
}
|
||||||
|
|
||||||
Butin::~Butin() {}
|
Butin::~Butin() {}
|
||||||
|
|
||||||
Butin::Butin(const Butin &src)
|
Butin::Butin(const Butin &src)
|
||||||
: plateau(PlateauButin(8)), joueur1{src.joueur1}, joueur2{src.joueur2},
|
: plateau(PlateauButin()), joueur1{src.joueur1}, joueur2{src.joueur2},
|
||||||
joueurCourant{src.joueurCourant} {
|
joueurCourant{src.joueurCourant} {
|
||||||
plateau.initialiserPlateau(joueur1, joueur2);
|
plateau.initialiserPlateau(joueur1, joueur2);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue