Files
UnrealEngineUWP/Engine/Source/Editor/DetailCustomizations/Private/ReflectionCaptureDetails.cpp
bryan sefcik 0837230669 Ran IWYU again on half of the Engine/Source/Editor/... source files.
#jira

[CL 21716414 by bryan sefcik in ue5-main branch]
2022-08-30 23:03:03 -04: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