forked from fauvet/API_BUT5.5
Rewording des packages
This commit is contained in:
14
src/fr/iut_fbleau/api_but5.5/entity/Plateau.java
Normal file
14
src/fr/iut_fbleau/api_but5.5/entity/Plateau.java
Normal 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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user