Files
FNGameProj/Source/FortniteGame/Private/FortIntelPackSet.cpp
T
2024-03-03 23:44:39 +01: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() {
}