diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-09-16 10:15:31 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-09-16 10:15:31 +0200 |
commit | 0206a146d6026e9269fbda409e62bab18ae12865 (patch) | |
tree | 0ea300b4efedce6abc40cb9334f6fed17fb3d1f4 /core/src/ch/asynk/tankontank/actors | |
parent | ee34fe79fa447e73594e87a13cf35e8b55683c2d (diff) | |
download | RustAndDust-0206a146d6026e9269fbda409e62bab18ae12865.zip RustAndDust-0206a146d6026e9269fbda409e62bab18ae12865.tar.gz |
move Unit and UnitFactory into game/
Diffstat (limited to 'core/src/ch/asynk/tankontank/actors')
-rw-r--r-- | core/src/ch/asynk/tankontank/actors/Unit.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/core/src/ch/asynk/tankontank/actors/Unit.java b/core/src/ch/asynk/tankontank/actors/Unit.java deleted file mode 100644 index e7e922a..0000000 --- a/core/src/ch/asynk/tankontank/actors/Unit.java +++ /dev/null @@ -1,36 +0,0 @@ -package ch.asynk.tankontank.actors; - -import com.badlogic.gdx.graphics.g2d.TextureRegion; - -public class Unit extends Pawn -{ - public int rng; - public int def; - public int cdef; - public int mp; - public boolean hq; - public boolean ht; - - // hard tager - public Unit(boolean hq, int range, int defense, int movementPoints, TextureRegion region, HexMap map) - { - super(region, map); - this.hq = hq; - this.rng = range; - this.def = defense; - this.mp = movementPoints; - this.ht = true; - } - - // soft tager - public Unit(boolean hq, int range, int defense, int concealedDefense, int movementPoints, TextureRegion region, HexMap map) - { - super(region, map); - this.hq = hq; - this.rng = range; - this.def = defense; - this.cdef = concealedDefense; - this.mp = movementPoints; - this.ht = false; - } -} |