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