mirror of
https://github.com/Squareville/TestEventServer.git
synced 2025-12-31 09:09:45 -06: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();
|
|
}
|
|
}
|