mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
473 B
C++
15 lines
473 B
C++
#include "FortSafeZoneIndicatorFuture.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortSafeZoneIndicatorFuture::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortSafeZoneIndicatorFuture, NextNextCenter);
|
|
DOREPLIFETIME(AFortSafeZoneIndicatorFuture, NextNextRadius);
|
|
}
|
|
|
|
AFortSafeZoneIndicatorFuture::AFortSafeZoneIndicatorFuture() {
|
|
NextNextRadius = 1;
|
|
}
|
|
|