public void AttackAvoided(object source, AttackAvoidedEventArgs arg)
 {
     Console.WriteLine(arg.Hero.GetType().Name + " avoided the attack");
 }
示例#2
0
 public void AttackAvoided(object source, AttackAvoidedEventArgs arg)
 {
     this.listBox_HeroesFight.Items.Add(arg.Hero.GetType().Name + " avoided the attack");
 }