mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
0545adfac3
Have fun!
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();
|
|
}
|
|
}
|