Fix bot PCH
On unix builds, the PCH would collide with Games PCH
This commit is contained in:
parent
e4e4f60fff
commit
6ee9bc9e9d
@ -19,9 +19,9 @@
|
||||
set(LIBRARY_NAME Bots)
|
||||
|
||||
#Add PCH Files
|
||||
set(bots_PCH "${CMAKE_CURRENT_SOURCE_DIR}/pchdef.h")
|
||||
set(bots_PCH "${CMAKE_CURRENT_SOURCE_DIR}/botpch.h")
|
||||
if(PCH)
|
||||
LIST(APPEND bots_PCH "${CMAKE_CURRENT_SOURCE_DIR}/pchdef.cpp")
|
||||
LIST(APPEND bots_PCH "${CMAKE_CURRENT_SOURCE_DIR}/botpch.cpp")
|
||||
endif()
|
||||
|
||||
#Base files
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "AhBotConfig.h"
|
||||
#include "SystemConfig.h"
|
||||
std::vector<std::string> split(const std::string &s, char delim);
|
||||
|
1
src/modules/Bots/botpch.cpp
Normal file
1
src/modules/Bots/botpch.cpp
Normal file
@ -0,0 +1 @@
|
||||
//#include "botpch.h"
|
@ -1 +0,0 @@
|
||||
//#include "pchdef.h"
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "AiFactory.h"
|
||||
#include "strategy/Engine.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "ChatFilter.h"
|
||||
#include "strategy/values/RtiTargetValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "ChatHelper.h"
|
||||
#include "AiFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "FleeManager.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "LootObjectStack.h"
|
||||
#include "playerbot.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "PlayerbotMgr.h"
|
||||
#include "playerbot.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
#include "playerbot.h"
|
||||
#include "RandomPlayerbotFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotFactory.h"
|
||||
#include "SQLStorages.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "Config/Config.h"
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
#include "PlayerbotFactory.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "Config/Config.h"
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "PlayerbotMgr.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "Config/Config.h"
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
#include "PlayerbotFactory.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "Config/Config.h"
|
||||
#include "../pchdef.h"
|
||||
#include "../botpch.h"
|
||||
#include "playerbot.h"
|
||||
#include "PlayerbotAIConfig.h"
|
||||
#include "PlayerbotFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "AiObjectContext.h"
|
||||
#include "Action.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "ActionBasket.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "AiObject.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "AiObjectContext.h"
|
||||
#include "NamedObjectContext.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
|
||||
#include "Engine.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Event.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Multiplier.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "PassiveMultiplier.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Action.h"
|
||||
#include "Queue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Strategy.h"
|
||||
#include "NamedObjectContext.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Trigger.h"
|
||||
#include "Action.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../../pchdef.h"
|
||||
#include "../../botpch.h"
|
||||
#include "../playerbot.h"
|
||||
#include "Value.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "AcceptQuestAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "AddLootAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "AreaTriggerAction.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "AttackAction.h"
|
||||
#include "MovementGenerator.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "BankAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "BuffAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "BuyAction.h"
|
||||
#include "../ItemVisitors.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "CastCustomSpellAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ChangeChatAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ChangeStrategyAction.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ChangeTalentsAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ChatShortcutActions.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "CheckMountStateAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "DestroyItemAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "DropQuestAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "EmoteAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "EquipAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "FollowActions.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "GenericActions.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "GenericActions.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "GossipHelloAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "GuildAcceptAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "GuildBankAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "HelpAction.h"
|
||||
#include "ChatActionContext.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "InventoryAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "InventoryChangeFailureAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "LfgActions.h"
|
||||
#include "../../AiFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ListQuestsActions.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ListSpellsAction.h"
|
||||
#include "../ItemVisitors.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "LogLevelAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "LootAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "LootRollAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "LootStrategyAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "../values/LastMovementValue.h"
|
||||
#include "MovementActions.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "NonCombatActions.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "PositionAction.h"
|
||||
#include "../values/PositionValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "QueryItemUsageAction.h"
|
||||
#include "../../../ahbot/AhBot.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "QueryQuestAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "QuestAction.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ReadyCheckAction.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "RememberTaxiAction.h"
|
||||
#include "../values/LastMovementValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "RepairAllAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ResetAiAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "ReviveFromCorpseAction.h"
|
||||
#include "../../PlayerbotFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "RewardAction.h"
|
||||
#include "../ItemVisitors.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "SaveManaAction.h"
|
||||
#include "../../AiFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "../../RandomPlayerbotMgr.h"
|
||||
#include "SecurityCheckAction.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "SellAction.h"
|
||||
#include "../ItemVisitors.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "SetHomeAction.h"
|
||||
#include "../../PlayerbotAIConfig.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "StatsAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "StayActions.h"
|
||||
#include "../values/LastMovementValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "SuggestWhatToDoAction.h"
|
||||
#include "../../../ahbot/AhBot.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TalkToQuestGiverAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TaxiAction.h"
|
||||
#include "../values/LastMovementValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TeleportAction.h"
|
||||
#include "../values/LastMovementValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TellCastFailedAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TellItemCountAction.h"
|
||||
#include "../values/ItemCountValue.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TellLosAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TellReputationAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TellTargetAction.h"
|
||||
#include "ThreatManager.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TradeAction.h"
|
||||
#include "../ItemVisitors.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TradeStatusAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "TrainerAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "UnequipAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "UseItemAction.h"
|
||||
#include "DBCStore.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "UseMeetingStoneAction.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "WhoAction.h"
|
||||
#include "../../AiFactory.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "DruidMultipliers.h"
|
||||
#include "BearTankDruidStrategy.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "pchdef.h"
|
||||
#include "botpch.h"
|
||||
#include "../../playerbot.h"
|
||||
#include "DruidMultipliers.h"
|
||||
#include "CasterDruidStrategy.h"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user