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