示例#1
0
 public void AttackTarget(Monster monster)
 {
     monster.Notify(50);
 }
示例#2
0
 /// <summary>
 /// 攻击怪物
 /// </summary>
 /// <param name="monster">被攻击的怪物</param>
 public void Attack(Monster monster)
 {
     this.Weapon.AttackTarget(monster);
 }