예제 #1
0
 public void UseSpell(MagicCast spell, Hero targethero, uint strength)
 {
     if (spell != null)
     {
         spell.MainCast(targethero, strength);
     }
 }
예제 #2
0
 public void UseSpell(MagicCast spell, Hero targethero)
 {
     if (spell != null)
     {
         spell.MainCast(targethero);
     }
 }