mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
14 lines
444 B
C++
14 lines
444 B
C++
|
#include "BaseWavesGenericEnemy.h"
|
||
|
#include "dZoneManager.h"
|
||
|
|
||
|
void BaseWavesGenericEnemy::OnStartup(Entity* self) {
|
||
|
self->SetNetworkVar<uint32_t>(u"points", GetPoints());
|
||
|
}
|
||
|
|
||
|
void BaseWavesGenericEnemy::OnDie(Entity* self, Entity* killer) {
|
||
|
auto* zoneControlObject = dZoneManager::Instance()->GetZoneControlObject();
|
||
|
if (zoneControlObject != nullptr) {
|
||
|
zoneControlObject->OnFireEventServerSide(killer, "Survival_Update", GetPoints());
|
||
|
}
|
||
|
}
|