Rewording des packages

This commit is contained in:
2024-10-09 09:39:03 +02:00
parent e6681fa1d0
commit dea959919c
5 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package fr.iut_fbleau.but3GameBody.entity;
import java.util.Iterator;
public interface Plateau {
Player getPlayer();
boolean isFinished();
Result getResult();
Iterator<Ply> givePlies();
void doo(Ply ply);
void undo(Ply ply);
}