Files
2026-04-22 15:51:07 +02:00

18 lines
617 B
C++

#include "FortIntelPackSet.h"
#include "Net/UnrealNetwork.h"
void UFortIntelPackSet::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UFortIntelPackSet, MaxCharges);
DOREPLIFETIME(UFortIntelPackSet, CurrentCharges);
DOREPLIFETIME(UFortIntelPackSet, StormTrackerCost);
DOREPLIFETIME(UFortIntelPackSet, RevealedTargetsRange);
DOREPLIFETIME(UFortIntelPackSet, RevealedTargetsDuration);
DOREPLIFETIME(UFortIntelPackSet, RevealedTargetsCost);
}
UFortIntelPackSet::UFortIntelPackSet() {
}