21 lines
321 B
Java
21 lines
321 B
Java
package Nim;
|
|
|
|
import fr.iut_fbleau.raw_api_body.entity.*;
|
|
|
|
public class PlyNim extends Ply {
|
|
/*
|
|
Nombre d'alumettes retirées
|
|
*/
|
|
int coup;
|
|
|
|
/*
|
|
Joueur actuel
|
|
*/
|
|
Player joueur;
|
|
|
|
|
|
public PlyNim(int c, Player p){
|
|
this.coup = c;
|
|
this.joueur = p;
|
|
}
|
|
} |