コード例 #1
0
 public static float GetDamage(this SpellBase spell, Obj_AI_Base target)
 {
     return(spell.GetSpellDamage(target));
 }
コード例 #2
0
 public static bool IsKillable(this SpellBase spell, Obj_AI_Base target)
 {
     return(target.Health <= spell.GetSpellDamage(target));
 }