mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
18 lines
617 B
C++
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() {
|
|
}
|
|
|