Ejemplo n.º 1
0
 public void Attack(PrimaryPlayer primaryPlayer)
 {
     Console.WriteLine("Zombie attacks " + primaryPlayer.Name);
     primaryPlayer.TakeDamage(_damage, _armourDamage);
 }
Ejemplo n.º 2
0
 public void Defend(PrimaryPlayer primaryPlayer)
 {
     Console.WriteLine("Zombie defends from " + primaryPlayer.Name);
 }
Ejemplo n.º 3
0
 public void Defend(PrimaryPlayer primaryPlayer)
 {
     Console.WriteLine("Werewolf defends from " + primaryPlayer.Name);
 }