mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
3defd51441
Removing extraneous includes from scripts that start with the letter G
16 lines
289 B
C++
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);
|
|
}
|
|
}
|