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

19 lines
469 B
C++

// 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());
}
};