diff options
Diffstat (limited to 'core/src/ch/asynk/rustanddust/game')
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/Factory.java | 4 | ||||
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/Hex.java | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Factory.java b/core/src/ch/asynk/rustanddust/game/Factory.java index a16fb49..4d67eb5 100644 --- a/core/src/ch/asynk/rustanddust/game/Factory.java +++ b/core/src/ch/asynk/rustanddust/game/Factory.java @@ -29,6 +29,8 @@ public class Factory implements Board.TileBuilder, Disposable public static final String ENABLED = "enabled"; public static final String REINFORCEMENT = "reinforcement"; + public static final int HEX_CAPACITY = 1; + public enum MapType { MAP_00, @@ -213,7 +215,7 @@ public class Factory implements Board.TileBuilder, Disposable public Hex getNewTile(float x, float y, int col, int row, boolean offmap) { - Hex hex = new Hex(x, y, col, row, hexOverlaysAtlas, Army.NONE); + Hex hex = new Hex(x, y, col, row, HEX_CAPACITY, Army.NONE, hexOverlaysAtlas); if (offmap) hex.terrain = Hex.Terrain.OFFMAP; return hex; } diff --git a/core/src/ch/asynk/rustanddust/game/Hex.java b/core/src/ch/asynk/rustanddust/game/Hex.java index f5a990e..7b37dee 100644 --- a/core/src/ch/asynk/rustanddust/game/Hex.java +++ b/core/src/ch/asynk/rustanddust/game/Hex.java @@ -43,9 +43,9 @@ public class Hex extends Tile return String.format("(%d;%d)", col, row); } - public Hex(float x, float y, int col, int row, TextureAtlas atlas, Army defaultArmy) + public Hex(float x, float y, int col, int row, int capacity, Army defaultArmy, TextureAtlas atlas) { - super(x, y, col, row, atlas, defaultArmy); + super(x, y, col, row, capacity, defaultArmy, atlas); this.terrain = Terrain.CLEAR; this.roads = 0; } |