public override bool Attack(GameCharacter character)
 {
     Console.WriteLine($"The brawler {CharacterName} is attacking {character.CharacterName}");
     return(true);
 }
Exemple #2
0
 public bool Attack(GameCharacter character)
 {
     Console.WriteLine($"The blackwitch {CharacterName} is attacking {character.CharacterName}");
     return(true);
 }