mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
0545adfac3
Have fun!
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);
|
|
}
|
|
}
|