diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-02-02 14:56:28 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-02-02 14:56:28 +0100 |
commit | c49aaeaabd83e085e23ef0eca169ce804cf78ab4 (patch) | |
tree | ab6d4d9a211e4edb21ea08bd5096c021a9836f47 | |
parent | 47ecdf87d8c1e1df831e0e616a554a912a65a6d6 (diff) | |
download | RustAndDust-c49aaeaabd83e085e23ef0eca169ce804cf78ab4.zip RustAndDust-c49aaeaabd83e085e23ef0eca169ce804cf78ab4.tar.gz |
Map0Hex: remove IterableArray<Hex> objectives()
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/map/Map0Hex.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java b/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java index b0305f0..607a1e4 100644 --- a/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java +++ b/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java @@ -69,11 +69,6 @@ public abstract class Map0Hex extends Board return n; } - public IterableArray<Hex> objectives() - { - return objectives; - } - public void hexSelect(Hex hex) { selectedTile.set(hex); } public void hexUnselect(Hex hex) { selectedTile.hide(); } public void hexMoveShow(Hex hex) { enableOverlayOn(hex, Hex.MOVE, true); } |