diff options
| -rw-r--r-- | core/src/ch/asynk/rustanddust/game/map/Map0Hex.java | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java b/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java index c2049ea..80ab5f9 100644 --- a/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java +++ b/core/src/ch/asynk/rustanddust/game/map/Map0Hex.java @@ -82,6 +82,16 @@ public abstract class Map0Hex extends Board          zone.enable(Hex.EXIT, true);      } +    public Zone getEntryZone(int i) +    { +        return entryZones.get(i); +    } + +    public Zone getExitZone(int i) +    { +        return exitZones.get(i); +    } +      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); } | 
