2009-02-17 18:08:26 +01:00
|
|
|
/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
|
2008-10-02 16:23:55 -05:00
|
|
|
* This program is free software licensed under GPL version 2
|
|
|
|
|
* Please see the included DOCS/LICENSE.TXT for more information */
|
2009-10-17 15:51:44 -07:00
|
|
|
|
2008-10-02 16:23:55 -05:00
|
|
|
#ifndef SC_PRECOMPILED_H
|
|
|
|
|
#define SC_PRECOMPILED_H
|
2009-10-17 15:51:44 -07:00
|
|
|
|
2010-01-19 11:36:05 +01:00
|
|
|
#include "ScriptMgr.h"
|
2008-10-05 11:56:30 -05:00
|
|
|
#include "Cell.h"
|
|
|
|
|
#include "CellImpl.h"
|
2009-10-27 23:35:44 -07:00
|
|
|
#include "GameEventMgr.h"
|
2008-10-05 11:56:30 -05:00
|
|
|
#include "GridNotifiers.h"
|
|
|
|
|
#include "GridNotifiersImpl.h"
|
|
|
|
|
#include "Unit.h"
|
|
|
|
|
#include "GameObject.h"
|
2010-01-19 11:36:05 +01:00
|
|
|
#include "ScriptedCreature.h"
|
|
|
|
|
#include "ScriptedGossip.h"
|
2010-08-08 22:54:58 +06:00
|
|
|
#include "InstanceScript.h"
|
2009-08-23 14:20:07 -05:00
|
|
|
#include "CombatAI.h"
|
|
|
|
|
#include "PassiveAI.h"
|
2009-09-23 13:24:06 -07:00
|
|
|
#include "Chat.h"
|
2016-04-25 22:03:34 +02:00
|
|
|
#include "DB2Stores.h"
|
2010-02-23 20:26:49 +01:00
|
|
|
#include "ObjectMgr.h"
|
2010-07-24 22:41:42 +02:00
|
|
|
#include "SpellScript.h"
|
2010-12-30 02:03:46 +01:00
|
|
|
#include "SpellAuraEffects.h"
|
2009-10-17 15:51:44 -07:00
|
|
|
|
2010-06-23 01:47:41 +02:00
|
|
|
#ifdef _WIN32
|
2008-10-02 16:23:55 -05:00
|
|
|
#include <windows.h>
|
|
|
|
|
#endif
|
2009-10-17 15:51:44 -07:00
|
|
|
|
2008-10-02 16:23:55 -05:00
|
|
|
#endif
|
2009-02-17 20:07:49 -06:00
|
|
|
|