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.ja v a 2 s .c o m import uk.ac.gcu.bluedroid.util.Position; public class Soldier extends Unit { public Soldier(int owner, Position pos){ super(owner, pos); this.max_life = 9; this.power = 2; this.range = 1; this.move = 5; this.prefix = "i"; //flag life = max_life; } }