Exemple #1
0
 private static void CheckIfDead(IFightable attacker, IFightable target)
 {
     if (target.Health <= 0)
     {
         target.Die(attacker);
         attacker.Kill(target);
     }
 }