Exemplo n.º 1
0
 /// <summary>
 /// Player gets hit
 /// </summary>
 /// <param name="vampire">The attacker</param>
 internal void GetHit(Vampire vampire)
 {
     //Subtract the health
     Health -= vampire.GetDamage();
 }