Ejemplo n.º 1
0
 public override void Damage(int damage)
 {
     health -= damage;
     if (health < 0)
     {
         death.die();
     }
 }