예제 #1
0
 public UseUnitQuestObjective(WowInterface wowInterface, List <int> objectDisplayIds, bool questgiversOnly, UseUnitQuestObjectiveCondition condition)
 {
     WowInterface     = wowInterface;
     ObjectDisplayIds = objectDisplayIds;
     Condition        = condition;
     QuestgiversOnly  = questgiversOnly;
 }
예제 #2
0
 public UseUnitQuestObjective(AmeisenBotInterfaces bot, List <int> objectDisplayIds, bool questgiversOnly, UseUnitQuestObjectiveCondition condition)
 {
     Bot = bot;
     ObjectDisplayIds = objectDisplayIds;
     Condition        = condition;
     QuestgiversOnly  = questgiversOnly;
 }
예제 #3
0
 public UseUnitQuestObjective(WowInterface wowInterface, int objectDisplayId, bool questgiversOnly, UseUnitQuestObjectiveCondition condition)
 {
     WowInterface     = wowInterface;
     ObjectDisplayIds = new List <int>()
     {
         objectDisplayId
     };
     Condition       = condition;
     QuestgiversOnly = questgiversOnly;
 }