DarkflameServer/dScripts/ai/GF/GfBananaCluster.cpp

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

13 lines
285 B
C++
Raw Normal View History

#include "GfBananaCluster.h"
#include "Entity.h"
void GfBananaCluster::OnStartup(Entity* self) {
self->AddTimer("startup", 100);
}
void GfBananaCluster::OnTimerDone(Entity* self, std::string timerName) {
if (timerName == "startup") {
self->ScheduleKillAfterUpdate(nullptr);
}
}