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