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