aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Maps/ZoneScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/game/Maps/ZoneScript.h')
-rw-r--r--src/server/game/Maps/ZoneScript.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/server/game/Maps/ZoneScript.h b/src/server/game/Maps/ZoneScript.h
index d9bb1b417d9..ad0cab88b24 100644
--- a/src/server/game/Maps/ZoneScript.h
+++ b/src/server/game/Maps/ZoneScript.h
@@ -31,13 +31,12 @@ class TC_GAME_API ZoneScript
{
public:
ZoneScript();
+ ZoneScript(ZoneScript const& right);
+ ZoneScript(ZoneScript&& right) noexcept;
+ ZoneScript& operator=(ZoneScript const& right);
+ ZoneScript& operator=(ZoneScript&& right) noexcept;
virtual ~ZoneScript();
- ZoneScript(ZoneScript const& right) = delete;
- ZoneScript(ZoneScript&& right) = delete;
- ZoneScript& operator=(ZoneScript const& right) = delete;
- ZoneScript& operator=(ZoneScript&& right) = delete;
-
virtual uint32 GetCreatureEntry(ObjectGuid::LowType /*spawnId*/, CreatureData const* data);
virtual uint32 GetGameObjectEntry(ObjectGuid::LowType /*spawnId*/, uint32 entry) { return entry; }