mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
15 lines
339 B
C++
15 lines
339 B
C++
|
#include "AllCrateChicken.h"
|
||
|
#include "dCommonVars.h"
|
||
|
#include "EntityManager.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();
|
||
|
}
|
||
|
}
|