Ajout des classes Effets, modification Joueur

This commit is contained in:
Paul Gross
2020-04-18 13:18:21 +02:00
parent 080e3d264d
commit 76bf870241
14 changed files with 264 additions and 35 deletions

View File

@@ -56,9 +56,6 @@ public class Plateau {
}
public void choix(Choix choix) {
return 0;
}
public Joueur selectionnerJoueur() {
return new Joueur("0");
@@ -84,4 +81,8 @@ public class Plateau {
public int roll6() {
return (int) Math.floor(Math.random() * 5)+1;
}
public List<Joueur> getJoueurs() {
return this.joueurs;
}
}