package fr.iut_fbleau.but3GameBody.entity; import java.util.Iterator; public interface Plateau { Player getPlayer(); boolean isFinished(); Result getResult(); Iterator givePlies(); void doo(Ply ply); void undo(Ply ply); }