Fixed compilation without PCH enabled

please avoid to miss header files in your sources
This commit is contained in:
Yehonal
2016-08-19 23:32:46 +02:00
parent d8de9c9296
commit 6eaa77591d
142 changed files with 241 additions and 11 deletions

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef BFD_H_
#define BFD_H_
#include "ScriptPCH.h"
enum Data
{
TYPE_GELIHAST = 0,

View File

@@ -7,6 +7,8 @@
#ifndef DEF_HYJAL_H
#define DEF_HYJAL_H
#include "ScriptPCH.h"
#define ERROR_INST_DATA "TSCR: Instance data not set properly for Mount Hyjal. Encounters will be buggy."
uint32 const EncounterCount = 5;

View File

@@ -5,6 +5,8 @@
#ifndef DEF_CULLING_OF_STRATHOLME_H
#define DEF_CULLING_OF_STRATHOLME_H
#include "ScriptPCH.h"
enum Data
{
DATA_ARTHAS_EVENT,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_OLD_HILLSBRAD_H
#define DEF_OLD_HILLSBRAD_H
#include "ScriptPCH.h"
enum DataIds
{
DATA_ESCORT_PROGRESS = 0,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_THEBLACKMORASS_H
#define DEF_THEBLACKMORASS_H
#include "ScriptPCH.h"
enum DataTypes
{
TYPE_CHRONO_LORD_DEJA = 0,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_DIRE_MAUL_H
#define DEF_DIRE_MAUL_H
#include "ScriptPCH.h"
enum DataTypes
{
TYPE_EAST_WING_PROGRESS = 0,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_MARAUDON_H
#define DEF_MARAUDON_H
#include "ScriptPCH.h"
enum DataTypes
{
TYPE_NOXXION = 0,

View File

@@ -5,6 +5,8 @@
#ifndef DEF_ONYXIAS_LAIR_H
#define DEF_ONYXIAS_LAIR_H
#include "ScriptPCH.h"
enum eInstanceData
{
DATA_ONYXIA = 0,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_RAZORFEN_DOWNS_H
#define DEF_RAZORFEN_DOWNS_H
#include "ScriptPCH.h"
enum CreatureIds
{
NPC_IDOL_ROOM_SPAWNER = 8611,

View File

@@ -8,6 +8,8 @@
#ifndef DEF_RUINS_OF_AHNQIRAJ_H
#define DEF_RUINS_OF_AHNQIRAJ_H
#include "ScriptPCH.h"
enum DataTypes
{
DATA_KURINNAXX = 0,

View File

@@ -7,6 +7,8 @@
#ifndef DEF_TEMPLE_OF_AHNQIRAJ_H
#define DEF_TEMPLE_OF_AHNQIRAJ_H
#include "ScriptPCH.h"
enum DataTypes
{
DATA_SKERAM = 1,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_WAILING_CAVERNS_H
#define DEF_WAILING_CAVERNS_H
#include "ScriptPCH.h"
enum DataTypes
{
TYPE_LORD_COBRAHN = 0,

View File

@@ -5,6 +5,8 @@ REWRITTEN BY XINEF
#ifndef DEF_ZULFARRACK_H
#define DEF_ZULFARRACK_H
#include "ScriptPCH.h"
enum ZulFarrakData
{
TYPE_PYRAMID_EVENT = 0,

View File

@@ -17,6 +17,7 @@ quest_a_pawn_on_the_eternal_pawn
EndContentData */
#include "ScriptMgr.h"
#include "ScriptPCH.h"
#include "ScriptedCreature.h"
#include "ScriptedGossip.h"
#include "Group.h"