constructeurs pour classes abstrraites

This commit is contained in:
2025-10-09 11:34:16 +02:00
parent c3c4609d62
commit d4667481c6
4 changed files with 22 additions and 2 deletions

View File

@@ -3,6 +3,11 @@ 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;
}