DarkflameServer/dScripts/ai/AG/AgTurret.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
413 B
C++
Raw Normal View History

#include "AgTurret.h"
#include "GameMessages.h"
void AgTurret::OnStartup(Entity* self) {
// TODO: do this legit way
self->AddTimer("killTurret", 20.0f);
}
void AgTurret::OnTimerDone(Entity* self, std::string timerName) {
if (timerName == "killTurret") {
self->ScheduleKillAfterUpdate();
}
}
void AgTurret::OnRebuildStart(Entity* self, Entity* user) {
GameMessages::SendLockNodeRotation(self, "base");
}