Files
UnrealEngine/Engine/Source/Editor/DetailCustomizations/Private/ReflectionCaptureDetails.cpp
2025-05-18 13:04:45 +08:00

20 lines
402 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ReflectionCaptureDetails.h"
#define LOCTEXT_NAMESPACE "ReflectionCaptureDetails"
TSharedRef<IDetailCustomization> FReflectionCaptureDetails::MakeInstance()
{
return MakeShareable( new FReflectionCaptureDetails );
}
void FReflectionCaptureDetails::CustomizeDetails( IDetailLayoutBuilder& DetailLayout )
{
}
#undef LOCTEXT_NAMESPACE