You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
402 B
C++
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
|