This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/src/Jeu.cpp
Mylloon baef0fce5c
butin now done:
* calcul points butin
* players CANT be const im crazy
* plateau cant return list of pieces
* joueurCourant is a pointer to a real player
* always show score but final score take in account the malus
2024-01-06 15:26:03 +01:00

7 lines
110 B
C++

#include "../includes/Jeu.hpp"
Jeu::Jeu(Joueur &j1) : joueur1(j1) {
joueurCourant = &j1;
}
Jeu::~Jeu() {}