DarkflameServer/dScripts/GfBananaCluster.cpp
2021-12-05 18:54:36 +01:00

15 lines
269 B
C++

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