상속: IWeapon
예제 #1
0
파일: Warrior.cs 프로젝트: ivayloivanof/HQC
 public void Update(Weapon weapon)
 {
     // TODO
 }
예제 #2
0
 public void Update(Weapon weapon)
 {
     this.Inventory.Add(weapon);
     this.AttackPoints += weapon.AttackBonus;
     this.HealthPoints += weapon.HealthBonus;
 }
예제 #3
0
 public void Update(Weapon weapon)
 {
     this.Inventory.Add(weapon);
 }