BUT39Octobre/Nim/PlyNim.java

21 lines
321 B
Java
Raw Permalink Normal View History

2024-10-09 11:47:39 +02:00
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;
}
}