Files
FNGameProj/Source/FortniteGame/Private/FortCreativeVolumeLinkComponent.cpp
2024-01-21 00:41:14 +01:00

15 lines
398 B
C++

#include "FortCreativeVolumeLinkComponent.h"
void UFortCreativeVolumeLinkComponent::OnLinkedVolumeSettingsChanged(const FPropertyOverrideData& OverrideData) {
}
AFortVolume* UFortCreativeVolumeLinkComponent::GetLinkedVolume() {
return NULL;
}
UFortCreativeVolumeLinkComponent::UFortCreativeVolumeLinkComponent() {
this->LinkedVolume = NULL;
this->bShouldFindVolumeAtStart = true;
}