Fix API + debut readme

This commit is contained in:
2025-10-16 10:26:32 +02:00
parent 296238a77a
commit ad350002f2
8 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}