Example #1
0
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
     {
         _hasAura = Helper.Magic.RegisterDelegate <HasAuraDelegate>(Offsets.HasAuraBySpellId);
     }
     return(_hasAura(Pointer, spellId));
 }
Example #2
0
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
     {
         _hasAura = Manager.Memory.RegisterDelegate <HasAuraDelegate>((IntPtr)Pointers.Unit.HasAuraBySpellId);
     }
     return(_hasAura(Pointer, spellId));
 }
Example #3
0
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
         _hasAura = Manager.Memory.RegisterDelegate<HasAuraDelegate>((IntPtr) Pointers.Unit.HasAuraBySpellId);
     return _hasAura(Pointer, spellId);
 }
Example #4
0
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
         _hasAura = Helper.Magic.RegisterDelegate<HasAuraDelegate>(Offsets.HasAuraBySpellId);
     return _hasAura(Pointer, spellId);
 }