Beispiel #1
0
 /// <summary>
 /// Decreases the health.
 /// </summary>
 public void DecreaseHealth()
 {
     health--;
     if (monitor != null)
     {
         monitor.UpdateHealth(health);
     }
 }