changement API

This commit is contained in:
James Boutaric
2025-10-09 11:46:45 +02:00
parent b9c926f493
commit 403764edc6
11 changed files with 106 additions and 48 deletions

View File

@@ -2,4 +2,13 @@ package fr.iut_fbleau.GameAPI;
public abstract class AbstractPly {
private Player joueur;
// constructeur à appeler dans le constructeur d'un fils concret avec super.
public AbstractPly(Player j){
this.joueur=j;
}
public Player getPlayer(){
return this.joueur;
}
}