mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
25 lines
733 B
C++
25 lines
733 B
C++
#include "FortCreativeVolumeLinkComponent.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void UFortCreativeVolumeLinkComponent::OnRep_LinkedVolume() {
|
|
}
|
|
|
|
void UFortCreativeVolumeLinkComponent::OnLinkedVolumeSettingsChanged(const FPropertyOverrideData& OverrideData) {
|
|
}
|
|
|
|
AFortVolume* UFortCreativeVolumeLinkComponent::GetLinkedVolume() {
|
|
return NULL;
|
|
}
|
|
|
|
void UFortCreativeVolumeLinkComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(UFortCreativeVolumeLinkComponent, LinkedVolume);
|
|
}
|
|
|
|
UFortCreativeVolumeLinkComponent::UFortCreativeVolumeLinkComponent() {
|
|
LinkedVolume = NULL;
|
|
bShouldFindVolumeAtStart = true;
|
|
}
|
|
|