DarkflameServer/dScripts/BaseWavesGenericEnemy.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
444 B
C++
Raw Normal View History

#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());
}
}