mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00: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;
|
||
|
}
|