aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Scripting/ScriptSystem.h
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2010-08-04 00:24:04 +0200
committerXTZGZoReX <none@none>2010-08-04 00:24:04 +0200
commita0b5921bfa3cfcd8443313efcccc277dabc2472e (patch)
treea5c90f230957457f2ac909203b4c4574643c093d /src/server/game/Scripting/ScriptSystem.h
parent33829ed45eec11d3e3b380b26fca4872e99c8f19 (diff)
* (Very) minor cleanups.
--HG-- branch : trunk
Diffstat (limited to 'src/server/game/Scripting/ScriptSystem.h')
-rw-r--r--src/server/game/Scripting/ScriptSystem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server/game/Scripting/ScriptSystem.h b/src/server/game/Scripting/ScriptSystem.h
index f78cd2e64fa..7102e4a43e1 100644
--- a/src/server/game/Scripting/ScriptSystem.h
+++ b/src/server/game/Scripting/ScriptSystem.h
@@ -49,11 +49,10 @@ struct StringTextData
uint32 uiEmote;
};
-#define pSystemMgr SystemMgr::Instance()
-
class SystemMgr
{
public:
+
SystemMgr();
~SystemMgr() {}
@@ -93,8 +92,11 @@ class SystemMgr
}
protected:
+
TextDataMap m_mTextDataMap; //additional data for text strings
PointMoveMap m_mPointMoveMap; //coordinates for waypoints
};
+#define pSystemMgr SystemMgr::Instance()
+
#endif