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

17 lines
552 B
C++
Executable file

#include "ShieldGeneratorActor.h"
#include "Net/UnrealNetwork.h"
void AShieldGeneratorActor::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AShieldGeneratorActor, GeneratorRadius);
DOREPLIFETIME(AShieldGeneratorActor, DeployDelay);
}
AShieldGeneratorActor::AShieldGeneratorActor() {
this->GeneratorRadius = 5.00f;
this->DeployDelay = 2.00f;
this->bPushStatusEffectOnExit = false;
this->GeneratorLifetime = 10.00f;
}