mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-01 09:19:31 -06:00
12 lines
258 B
C++
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;
|
|
}
|