Mylloon
baef0fce5c
* 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
7 lines
110 B
C++
7 lines
110 B
C++
#include "../includes/Jeu.hpp"
|
|
|
|
Jeu::Jeu(Joueur &j1) : joueur1(j1) {
|
|
joueurCourant = &j1;
|
|
}
|
|
|
|
Jeu::~Jeu() {}
|