public Weapon(Weapon weapon) { this.name = weapon.name; this.dmg = weapon.dmg; this.staminaCost = weapon.staminaCost; this._type = weapon._type; this.range = weapon.range; this.load = weapon.load; }
public Weapon(string name, int dmg, int staminaCost, typeWeapon type, int range, int load) { this.name = name; this.dmg = dmg; this.staminaCost = staminaCost; this._type = type; this.range = range; this.load = load; }