Files
UnrealEngine/Engine/Plugins/Animation/ControlRig/Source/ControlRigEditor/Private/ControlRigComponentDetails.cpp
2025-05-18 13:04:45 +08:00

19 lines
469 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ControlRigComponentDetails.h"
#include "UObject/Class.h"
#include "ControlRigComponent.h"
#define LOCTEXT_NAMESPACE "ControlRigComponentDetails"
TSharedRef<IDetailCustomization> FControlRigComponentDetails::MakeInstance()
{
return MakeShareable( new FControlRigComponentDetails );
}
void FControlRigComponentDetails::CustomizeDetails( IDetailLayoutBuilder& DetailBuilder )
{
}
#undef LOCTEXT_NAMESPACE