Exemplo n.º 1
0
 public static string Duel(Troop a, Troop b)
 {
     a.Attack(b);
     b.Attack(a);
     return(Report(a, b));
 }