Back to project page ubisoldiers.
The source code is released under:
MIT License
If you think the Android project ubisoldiers 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 com.github.gobbisanches.ubisoldiers.mechanics; /* w w w. ja v a2 s . c om*/ /** * Created by Sanches on 29/06/2014. */ public class Soldier extends Item { public Soldier(int id, Rarity rarity, String name, double attack, double defense) { super(id, rarity, name, attack, defense); } public Soldier(Soldier other) { super(other); } }