Esempio n. 1
0
 public void Damage()
 {
     --_HP;
     if (_HP <= 0)
     {
         _Action.Down();
         Main_GameManager.GameOver();
         _HP = 0;
     }
     else
     {
         _Action.Damage();
     }
     UpdateLifeViewer();
 }