/* * Copyright (C) 2016+ AzerothCore , released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3 * Copyright (C) 2021+ 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(); }