diff options
author | Kargatum <dowlandtop@yandex.com> | 2021-06-23 04:19:02 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 23:19:02 +0200 |
commit | 5991b2769acc2f7c1959f1850a36a22c968bb45c (patch) | |
tree | 86ffae3a32cf14f00784a8a0c458d1644b438e4b /src/server/scripts/ScriptPCH.h | |
parent | 20a67cbfcf78e830fce746ee1a7ea16db2f4ca80 (diff) |
feat(Core/Scripts): split the huge scriptloader into smaller pieces (#5346)
* feat(Core/Scripts): split the huge scriptloader into smaller pieces
* AddSC_swamp_of_sorrows del
* 1
* add mod info
* 1
* 039f0e0faa081352d19f34b6f0abaa4e74414988
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
Diffstat (limited to 'src/server/scripts/ScriptPCH.h')
-rw-r--r-- | src/server/scripts/ScriptPCH.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/server/scripts/ScriptPCH.h b/src/server/scripts/ScriptPCH.h new file mode 100644 index 0000000000..c254b61008 --- /dev/null +++ b/src/server/scripts/ScriptPCH.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 + * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> + */ + +#ifndef SC_PRECOMPILED_H +#define SC_PRECOMPILED_H + +#include "Cell.h" +#include "CellImpl.h" +#include "Chat.h" +#include "CombatAI.h" +#include "DBCStores.h" +#include "DBCStructure.h" +#include "GameEventMgr.h" +#include "GameObject.h" +#include "GridNotifiers.h" +#include "GridNotifiersImpl.h" +#include "InstanceScript.h" +#include "ObjectMgr.h" +#include "PassiveAI.h" +#include "ScriptedCreature.h" +#include "ScriptedGossip.h" +#include "ScriptMgr.h" +#include "SpellAuraEffects.h" +#include "SpellScript.h" +#include "Unit.h" + +#ifdef _WIN32 +#include <windows.h> +#endif + +#endif |