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