Esempio n. 1
0
 public bool IsHostileTo(WowInterface wowInterface, WowPlayer player)
 {
     return(wowInterface.HookManager.WowGetUnitReaction(this, player) == WowUnitReaction.Hostile);
 }
Esempio n. 2
0
 public bool IsNeutralTo(WowInterface wowInterface, WowPlayer player)
 {
     return(wowInterface.HookManager.WowGetUnitReaction(this, player) == WowUnitReaction.Neutral);
 }
Esempio n. 3
0
 public bool IsFriendyTo(WowInterface wowInterface, WowPlayer player)
 {
     return(wowInterface.HookManager.WowGetUnitReaction(this, player) == WowUnitReaction.Friendly);
 }