コード例 #1
0
 // Shoots another player
 public void Shoot(FNPlayer other)
 {
     if (Hp <= 100 && Hp > 0)
     {
         other.TakeDamage(15);
     }
 }