mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
|
#include "AllCrateChicken.h"
|
||
|
#include "Entity.h"
|
||
|
|
||
|
void AllCrateChicken::OnStartup(Entity* self) {
|
||
|
self->AddTimer("KillRooster", 4.2f);
|
||
|
}
|
||
|
|
||
|
void AllCrateChicken::OnTimerDone(Entity* self, std::string timerName) {
|
||
|
if (timerName == "KillRooster") {
|
||
|
self->ScheduleKillAfterUpdate();
|
||
|
}
|
||
|
}
|