diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-12-20 01:03:58 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-12-20 01:03:58 +0100 |
commit | 21940405e009f5c1d201eb96d96ea251a3313af3 (patch) | |
tree | 1f9ec696204922f921ff1e32da3714f8706bd28c /src/server/game/Maps/ZoneScript.cpp | |
parent | 85d5f4bc0683d99cfaab244a8f0355b463f93267 (diff) |
Core/Battlegrounds: Made Battleground inherit ZoneScript
Closes #28480
Diffstat (limited to 'src/server/game/Maps/ZoneScript.cpp')
-rw-r--r-- | src/server/game/Maps/ZoneScript.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/server/game/Maps/ZoneScript.cpp b/src/server/game/Maps/ZoneScript.cpp index 9dce551910c..03ddf65e6cb 100644 --- a/src/server/game/Maps/ZoneScript.cpp +++ b/src/server/game/Maps/ZoneScript.cpp @@ -19,13 +19,12 @@ #include "Creature.h" #include "GameEventSender.h" -ZoneScript::ZoneScript() -{ -} - -ZoneScript::~ZoneScript() -{ -} +ZoneScript::ZoneScript() = default; +ZoneScript::ZoneScript(ZoneScript const& right) = default; +ZoneScript::ZoneScript(ZoneScript&& right) noexcept = default; +ZoneScript& ZoneScript::operator=(ZoneScript const& right) = default; +ZoneScript& ZoneScript::operator=(ZoneScript&& right) noexcept = default; +ZoneScript::~ZoneScript() = default; uint32 ZoneScript::GetCreatureEntry(ObjectGuid::LowType /*guidLow*/, CreatureData const* data) { |