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

            target.Damage(Status);
        }
Exemple #2
0
 public void Attack(IFightable target)
 {
     target.Damage(Status);
 }