minor changes in Abstract Board+added a getter to AbstractPly

This commit is contained in:
2025-09-19 15:22:44 +02:00
parent ad7821e5a3
commit c3c4609d62
2 changed files with 57 additions and 14 deletions

View File

@@ -2,4 +2,8 @@ package fr.iut_fbleau.GameAPI;
public abstract class AbstractPly {
private Player joueur;
public Player getPlayer(){
return this.joueur;
}
}