Ejemplo n.º 1
0
        public void Attack(IFightable target)
        {
            // 射撃音再生
            MasterAudio.PlaySound("Blaster_001");

            target.Damage(Status);
        }
Ejemplo n.º 2
0
 public void Attack(IFightable target)
 {
     target.Damage(Status);
 }