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

19 lines
494 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/RichTextBlockDecorator.h"
#include "CustomRichTextDecorator.generated.h"
class URichTextBlock;
UCLASS(Abstract, Blueprintable, HideDropdown)
class UCustomRichTextDecorator : public URichTextBlockDecorator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true))
URichTextBlock* RichTextBlock;
public:
UCustomRichTextDecorator();
};