mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
13 lines
288 B
C++
13 lines
288 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);
|
|
}
|
|
}
|