Exemplo n.º 1
0
 public void Apply()
 {
     // kind of a weird implementation, however both units must be notified of the combat for animation purposes
     // it's also worth noting that solving combat in two halves like this guarantees symmetry
     Unit1.ApplyCombat(this);
     Unit2.ApplyCombat(this);
 }