forked from fauvet/API_BUT5.5
15 lines
255 B
Java
15 lines
255 B
Java
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);
|
|
|
|
}
|