10 lines
156 B
Java
10 lines
156 B
Java
package fr.iut_fbleau.GameAPI;
|
|
|
|
public abstract class AbstractPly {
|
|
private Player joueur;
|
|
|
|
public Player getPlayer(){
|
|
return this.joueur;
|
|
}
|
|
}
|