diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/Battle.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Battle.java b/core/src/ch/asynk/rustanddust/game/Battle.java index 3922ce0..c6e4983 100644 --- a/core/src/ch/asynk/rustanddust/game/Battle.java +++ b/core/src/ch/asynk/rustanddust/game/Battle.java @@ -9,29 +9,29 @@ public interface Battle public String getDescription(); + public MapType getMapType(); + public Player getPlayer(); public Player getOpponent(); - public MapType getMapType(); + public Position getHudPosition(); - public Player getVictor(); + public Map setup(); public void start(); - public boolean turnDone(); - - public boolean hasReinforcement(); + public Player getVictor(); - public Zone getEntryZone(Unit unit); + public boolean turnDone(); - public Zone getExitZone(Unit unit); + public boolean isDeploymentDone(); - public Position getHudPosition(); + public boolean hasReinforcement(); public State.StateType getState(); - public boolean isDeploymentDone(); + public Zone getEntryZone(Unit unit); - public Map setup(); + public Zone getExitZone(Unit unit); } |