Back to project page bluedroid-mp.
The source code is released under:
Apache License
If you think the Android project bluedroid-mp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package uk.ac.gcu.bluedroid.units; /* w w w . j a v a 2s . co m*/ import uk.ac.gcu.bluedroid.util.Position; public class Archer extends Unit { public Archer(int owner, Position pos){ super(owner, pos); this.max_life = 6; this.power = 2; this.range = 3; this.move = 4; this.prefix = "a"; //flag life = max_life; } }