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 ww . j a v a 2 s .c o m /** * Created by Sanches on 29/06/2014. */ public class Armor extends Item { public Armor(int id, Rarity rarity, String name, double defense) { super(id, rarity, name, 0, defense); } public Armor(Item other) { super(other); } }