mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
15 lines
269 B
C++
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);
|
|||
|
}
|
|||
|
}
|