aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Maps/ZoneScript.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-07-12 12:29:22 +0200
committerShauren <shauren.trinity@gmail.com>2024-07-12 12:29:22 +0200
commitec2631eca3a397dffd2e525b34c131c283beb167 (patch)
treecd3fafd70074bf29af3e507b7e9dbd879fe9a2a4 /src/server/game/Maps/ZoneScript.cpp
parent9a7a83ef3074faaad037cfb4c098784695f49d30 (diff)
Core/Instances: New ZoneScript hook - OnCreatureGroupDepleted
* Triggers when the CreatureGroup no longer has any alive members (either last alive member dies or is removed from the group)
Diffstat (limited to 'src/server/game/Maps/ZoneScript.cpp')
-rw-r--r--src/server/game/Maps/ZoneScript.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/server/game/Maps/ZoneScript.cpp b/src/server/game/Maps/ZoneScript.cpp
index 03ddf65e6cb..599847d911a 100644
--- a/src/server/game/Maps/ZoneScript.cpp
+++ b/src/server/game/Maps/ZoneScript.cpp
@@ -19,6 +19,13 @@
#include "Creature.h"
#include "GameEventSender.h"
+ControlZoneHandler::ControlZoneHandler() = default;
+ControlZoneHandler::ControlZoneHandler(ControlZoneHandler const& right) = default;
+ControlZoneHandler::ControlZoneHandler(ControlZoneHandler&& right) noexcept = default;
+ControlZoneHandler& ControlZoneHandler::operator=(ControlZoneHandler const& right) = default;
+ControlZoneHandler& ControlZoneHandler::operator=(ControlZoneHandler&& right) noexcept = default;
+ControlZoneHandler::~ControlZoneHandler() = default;
+
ZoneScript::ZoneScript() = default;
ZoneScript::ZoneScript(ZoneScript const& right) = default;
ZoneScript::ZoneScript(ZoneScript&& right) noexcept = default;