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; /*from ww w . j a v a 2 s.c o m*/ import uk.ac.gcu.bluedroid.util.Position; public class Paladin extends Unit { public Paladin(int owner, Position pos){ super(owner, pos); this.max_life = 12; this.power = 3; this.range = 1; this.move = 7; this.prefix = "c"; //flag life = max_life; } }