Files
TCPlayerbotCore/src/server/scripts/ScriptPCH.h
T

33 lines
753 B
C
Raw Normal View History

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"
#include "Chat.h"
#include "DB2Stores.h"
#include "ObjectMgr.h"
#include "SpellScript.h"
#include "SpellAuraEffects.h"
2009-10-17 15:51:44 -07: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