mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 01:15:35 +01:00
Thanks to Paradox for sorting the commandscripts and chanhandlers out to work as they were intentionally ment to be like. --HG-- branch : trunk
22 lines
591 B
C
22 lines
591 B
C
/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
|
|
* This program is free software licensed under GPL version 2
|
|
* Please see the included DOCS/LICENSE.TXT for more information */
|
|
|
|
#ifndef SC_SCRIPTLOADER_H
|
|
#define SC_SCRIPTLOADER_H
|
|
|
|
void AddScripts();
|
|
void AddExampleScripts();
|
|
void AddSpellScripts();
|
|
void AddCommandScripts();
|
|
void AddWorldScripts();
|
|
void AddEasternKingdomsScripts();
|
|
void AddKalimdorScripts();
|
|
void AddOutlandScripts();
|
|
void AddNorthrendScripts();
|
|
void AddBattlegroundScripts();
|
|
void AddOutdoorPvPScripts();
|
|
void AddCustomScripts();
|
|
|
|
#endif
|