feat(Cmake): add support new script loader api (#38)

This commit is contained in:
Kargatum
2021-07-26 02:11:42 +07:00
committed by GitHub
parent 85a76feeca
commit 6bb67dbda3
5 changed files with 15 additions and 35 deletions

15
src/ah_bot_loader.cpp Normal file
View File

@@ -0,0 +1,15 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
* Copyright (C) 2021+ WarheadCore <https://github.com/WarheadCore>
*/
// From SC
void AddAHBotCommandScripts();
void AddAHBotScripts();
// Add all
void Addmod_ah_botScripts()
{
AddAHBotCommandScripts();
AddAHBotScripts();
}