コード例 #1
0
ファイル: WoWUnit.cs プロジェクト: Fernir/cleanLayer
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
     {
         _hasAura = Helper.Magic.RegisterDelegate <HasAuraDelegate>(Offsets.HasAuraBySpellId);
     }
     return(_hasAura(Pointer, spellId));
 }
コード例 #2
0
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
     {
         _hasAura = Manager.Memory.RegisterDelegate <HasAuraDelegate>((IntPtr)Pointers.Unit.HasAuraBySpellId);
     }
     return(_hasAura(Pointer, spellId));
 }
コード例 #3
0
ファイル: WoWUnit.cs プロジェクト: alex-v-odesk/IceFlake
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
         _hasAura = Manager.Memory.RegisterDelegate<HasAuraDelegate>((IntPtr) Pointers.Unit.HasAuraBySpellId);
     return _hasAura(Pointer, spellId);
 }
コード例 #4
0
ファイル: WoWUnit.cs プロジェクト: Vipeax/cleanLayer
 public bool HasAura(int spellId)
 {
     if (_hasAura == null)
         _hasAura = Helper.Magic.RegisterDelegate<HasAuraDelegate>(Offsets.HasAuraBySpellId);
     return _hasAura(Pointer, spellId);
 }