DRG-Femboy-Voice/Source/FSD/Public/RichTextInputDecorator.h
2025-04-15 12:39:31 -07:00

20 lines
525 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CustomRichTextDecorator.h"
#include "Templates/SubclassOf.h"
#include "RichTextInputDecorator.generated.h"
class URichTextInputWidget;
UCLASS(Abstract, Blueprintable, HideDropdown)
class URichTextInputDecorator : public UCustomRichTextDecorator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<URichTextInputWidget> DecoratorWidgetClass;
public:
URichTextInputDecorator();
};