summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/game/Unit.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/ch/asynk/tankontank/game/Unit.java')
-rw-r--r--core/src/ch/asynk/tankontank/game/Unit.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/ch/asynk/tankontank/game/Unit.java b/core/src/ch/asynk/tankontank/game/Unit.java
index 6606c14..965ed47 100644
--- a/core/src/ch/asynk/tankontank/game/Unit.java
+++ b/core/src/ch/asynk/tankontank/game/Unit.java
@@ -13,9 +13,9 @@ public class Unit extends PawnImage
public Army army;
// hard tager
- public Unit(Army army, boolean hq, int range, int defense, int movementPoints, TextureRegion region, HexMap map)
+ public Unit(Army army, boolean hq, int range, int defense, int movementPoints, TextureRegion region)
{
- super(region, map);
+ super(region);
this.army = army;
this.hq = hq;
this.rng = range;
@@ -25,9 +25,9 @@ public class Unit extends PawnImage
}
// soft tager
- public Unit(Army army, boolean hq, int range, int defense, int concealedDefense, int movementPoints, TextureRegion region, HexMap map)
+ public Unit(Army army, boolean hq, int range, int defense, int concealedDefense, int movementPoints, TextureRegion region)
{
- super(region, map);
+ super(region);
this.army = army;
this.hq = hq;
this.rng = range;