Files
API_BUT5.5/src/fr/iut_fbleau/api_but5.5/entity/Plateau.java

15 lines
255 B
Java
Raw Normal View History

2024-10-09 09:02:19 +02:00
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);
}