DRG-Femboy-Voice/Source/FSD/Private/MULE.cpp
2025-04-15 12:39:31 -07:00

22 lines
590 B
C++
Executable file

#include "MULE.h"
#include "HealthComponent.h"
#include "Net/UnrealNetwork.h"
#include "SimpleObjectInfoComponent.h"
void AMULE::SetIsDown(bool NewIsDown) {
}
void AMULE::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AMULE, IsDown);
}
AMULE::AMULE() {
this->HealthComponent = CreateDefaultSubobject<UHealthComponent>(TEXT("HealthComponent"));
this->ObjectInfo = CreateDefaultSubobject<USimpleObjectInfoComponent>(TEXT("ObjectInfo"));
this->IsDown = false;
}