diff options
author | Shauren <shauren.trinity@gmail.com> | 2017-05-24 21:31:23 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2017-05-24 21:31:23 +0200 |
commit | 0eb38451d34761f90df3df227cc481383c179046 (patch) | |
tree | 642a89ba304b7fd14ade261b0d2f57c8085e3533 /src | |
parent | 2200b4b0e100b5b45309d754153345adb43e7dbd (diff) |
Nopch fix
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellScript.h | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/src/server/game/Spells/SpellScript.h b/src/server/game/Spells/SpellScript.h index 50e98dfc40a..17b512ed052 100644 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -18,27 +18,35 @@ #ifndef __SPELL_SCRIPT_H #define __SPELL_SCRIPT_H -#include "Util.h" +#include "ObjectGuid.h" #include "SharedDefines.h" #include "SpellAuraDefines.h" -#include "Spell.h" +#include "Util.h" +#include <memory> #include <stack> -class Unit; -class SpellInfo; -class SpellScript; -class Spell; class Aura; +class AuraApplication; class AuraEffect; -struct SpellModifier; class Creature; -class GameObject; +class DamageInfo; +class DispelInfo; class DynamicObject; -class Player; +class GameObject; class Item; +class ModuleReference; +class Player; +class ProcEventInfo; +class Spell; +class SpellEffectInfo; +class SpellInfo; +class SpellScript; +class Unit; class WorldLocation; class WorldObject; -class ModuleReference; +struct SpellDestination; +struct SpellModifier; +struct SpellValue; #define SPELL_EFFECT_ANY (uint16)-1 #define SPELL_AURA_ANY (uint16)-1 |