コード例 #1
0
 public void OnHeal()
 {
     if (canHeal)
     {
         towerStats.Heal(healAmount);
         canHeal = false;
         StartCoroutine(Cooldown());
     }
 }