mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2010 - 2014 Eluna Lua Engine <http://emudevs.com/>
|
|
* This program is free software licensed under GPL version 3
|
|
* Please see the included DOCS/LICENSE.md for more information
|
|
*/
|
|
|
|
// Required
|
|
#include "AuctionHouseMgr.h"
|
|
#include "Cell.h"
|
|
#include "CellImpl.h"
|
|
#include "Chat.h"
|
|
#include "Channel.h"
|
|
#include "DBCStores.h"
|
|
#include "GossipDef.h"
|
|
#include "GridNotifiers.h"
|
|
#include "GridNotifiersImpl.h"
|
|
#include "Group.h"
|
|
#include "Guild.h"
|
|
#include "GuildMgr.h"
|
|
#include "Language.h"
|
|
#include "Mail.h"
|
|
#include "MapManager.h"
|
|
#include "ObjectAccessor.h"
|
|
#include "ObjectMgr.h"
|
|
#include "Opcodes.h"
|
|
#include "Player.h"
|
|
#include "Pet.h"
|
|
#include "ReputationMgr.h"
|
|
#include "revision.h"
|
|
#include "ScriptMgr.h"
|
|
#include "Spell.h"
|
|
#include "SpellAuras.h"
|
|
#include "SpellMgr.h"
|
|
#include "TemporarySummon.h"
|
|
#include "WorldPacket.h"
|
|
#include "WorldSession.h"
|
|
#ifdef MANGOS
|
|
#include "ReactorAI.h"
|
|
#include "revision_nr.h"
|
|
#else
|
|
#include "ScriptedCreature.h"
|
|
#include "SpellInfo.h"
|
|
#include "WeatherMgr.h"
|
|
#endif
|
|
#if (!defined(TBC) && !defined(CLASSIC))
|
|
#include "Vehicle.h"
|
|
#endif
|
|
#ifndef CLASSIC
|
|
#include "ArenaTeam.h"
|
|
#endif
|