DarkflameServer/dScripts/GfBananaCluster.cpp
EmosewaMC 3defd51441 G scripts
Removing extraneous includes from scripts that start with the letter G
2022-06-22 23:50:50 -07:00

16 lines
289 B
C++

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