follow up of last commit

This commit is contained in:
Mylloon 2023-12-14 14:52:54 +01:00
parent d27e903713
commit 70b61ef521
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,14 +1,14 @@
#include "../includes/Butin.hpp"
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);
}
Butin::~Butin() {}
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} {
plateau.initialiserPlateau(joueur1, joueur2);
}