October3d55/M/LGUI/Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegatePresetPara...

19 lines
469 B
C
Raw Normal View History

2025-03-10 09:43:27 +08:00
// Copyright 2019-Present LexLiu. All Rights Reserved.
#include "LGUIEventDelegateCustomization.h"
#pragma once
/**
*
*/
class LGUIEventDelegatePresetParamCustomization : public FLGUIEventDelegateCustomization
{
private:
LGUIEventDelegatePresetParamCustomization() :FLGUIEventDelegateCustomization(false) {}
public:
static TSharedRef<IPropertyTypeCustomization> MakeInstance()
{
return MakeShareable(new LGUIEventDelegatePresetParamCustomization());
}
};