diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-09 01:18:15 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-09 01:18:15 +0100 |
commit | 420562cd4b4edde63876271a2536d3118f329a2f (patch) | |
tree | 2cf0c3507f48b4789d0a4fe03f9d6fbefd609f50 | |
parent | bece4c3445320246eb19a22a96337728a54311c0 (diff) | |
download | RustAndDust-420562cd4b4edde63876271a2536d3118f329a2f.zip RustAndDust-420562cd4b4edde63876271a2536d3118f329a2f.tar.gz |
Battle: code reorder
-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); } |