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