Skip to content

Commit

Permalink
Add playerbot support for VC120
Browse files Browse the repository at this point in the history
  • Loading branch information
apo126 committed Apr 10, 2015
1 parent 9597952 commit 6ede056
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 1 deletion.
28 changes: 27 additions & 1 deletion win/VC120/game.vcxproj
Expand Up @@ -454,6 +454,19 @@
<ClCompile Include="..\..\src\game\PetHandler.cpp" />
<ClCompile Include="..\..\src\game\PetitionsHandler.cpp" />
<ClCompile Include="..\..\src\game\Player.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotClassAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotDeathKnightAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotDruidAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotHunterAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotMageAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotMgr.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotPaladinAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotPriestAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotRogueAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotShamanAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotWarlockAI.cpp" />
<ClCompile Include="..\..\src\game\playerbot\PlayerbotWarriorAI.cpp" />
<ClCompile Include="..\..\src\game\PlayerDump.cpp" />
<ClCompile Include="..\..\src\game\PointMovementGenerator.cpp" />
<ClCompile Include="..\..\src\game\PoolManager.cpp" />
Expand Down Expand Up @@ -624,6 +637,19 @@
<ClInclude Include="..\..\src\game\Pet.h" />
<ClInclude Include="..\..\src\game\PetAI.h" />
<ClInclude Include="..\..\src\game\Player.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotClassAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotDeathKnightAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotDruidAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotHunterAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotMageAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotMgr.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotPaladinAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotPriestAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotRogueAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotShamanAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotWarlockAI.h" />
<ClInclude Include="..\..\src\game\playerbot\PlayerbotWarriorAI.h" />
<ClInclude Include="..\..\src\game\PlayerDump.h" />
<ClInclude Include="..\..\src\game\PointMovementGenerator.h" />
<ClInclude Include="..\..\src\game\PoolManager.h" />
Expand Down Expand Up @@ -699,4 +725,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
78 changes: 78 additions & 0 deletions win/VC120/game.vcxproj.filters
Expand Up @@ -457,6 +457,45 @@
<ClCompile Include="..\..\src\game\UnitAuraProcHandler.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotClassAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotDeathKnightAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotDruidAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotHunterAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotMageAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotMgr.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotPaladinAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotPriestAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotRogueAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotShamanAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotWarlockAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\playerbot\PlayerbotWarriorAI.cpp">
<Filter>World/Handlers</Filter>
</ClCompile>
<ClCompile Include="..\..\src\game\AuctionHouseBot\AuctionHouseBot.cpp">
<Filter>AhBot</Filter>
</ClCompile>
Expand Down Expand Up @@ -931,6 +970,45 @@
<ClInclude Include="..\..\src\game\Camera.h">
<Filter>Object</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotClassAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotDeathKnightAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotDruidAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotHunterAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotMageAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotMgr.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotPaladinAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotPriestAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotRogueAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotShamanAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotWarlockAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\playerbot\PlayerbotWarriorAI.h">
<Filter>World/Handlers</Filter>
</ClInclude>
<ClInclude Include="..\..\src\game\MoveMap.h">
<Filter>World/Handlers</Filter>
</ClInclude>
Expand Down

0 comments on commit 6ede056

Please sign in to comment.