Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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