DarkflameServer/dScripts/AmDarklingMech.cpp
2021-12-05 18:54:36 +01:00

12 lines
258 B
C++

#include "AmDarklingMech.h"
#include "DestroyableComponent.h"
void AmDarklingMech::OnStartup(Entity* self)
{
auto* destroyableComponent = self->GetComponent<DestroyableComponent>();
destroyableComponent->SetFaction(4);
qbTurretLOT = 13171;
}