From 420562cd4b4edde63876271a2536d3118f329a2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 9 Dec 2015 01:18:15 +0100 Subject: Battle: code reorder --- core/src/ch/asynk/rustanddust/game/Battle.java | 20 ++++++++++---------- 1 file 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); } -- cgit v1.1-2-g2b99