Files
UnrealEvent/Project/Source/FortniteGame/Private/FortCreativeVolumeLinkComponent.cpp
2026-04-22 15:51:07 +02: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;
}