Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 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;
 }