* feat(Core/Scripts): split the huge scriptloader into smaller pieces
* AddSC_swamp_of_sorrows del
* 1
* add mod info
* 1
* 039f0e0faa
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
26 lines
947 B
C++
26 lines
947 B
C++
/*
|
|
* 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>
|
|
*/
|
|
|
|
// This is where scripts' loading functions should be declared:
|
|
void AddSC_event_brewfest_scripts();
|
|
void AddSC_event_hallows_end_scripts();
|
|
void AddSC_event_pilgrims_end_scripts();
|
|
void AddSC_event_winter_veil_scripts();
|
|
void AddSC_event_love_in_the_air();
|
|
void AddSC_event_midsummer_scripts();
|
|
void AddSC_event_childrens_week();
|
|
|
|
// The name of this function should match:
|
|
// void Add${NameOfDirectory}Scripts()
|
|
void AddEventsScripts()
|
|
{
|
|
AddSC_event_brewfest_scripts();
|
|
AddSC_event_hallows_end_scripts();
|
|
AddSC_event_pilgrims_end_scripts();
|
|
AddSC_event_winter_veil_scripts();
|
|
AddSC_event_love_in_the_air();
|
|
AddSC_event_midsummer_scripts();
|
|
AddSC_event_childrens_week();
|
|
}
|