mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
24 lines
593 B
C++
24 lines
593 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "FortAthenaTutorialTextPrompt.generated.h"
|
|
|
|
class URichTextBlock;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UFortAthenaTutorialTextPrompt : public UUserWidget {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FText TextToDisplay;
|
|
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
URichTextBlock* RichText_TutorialPrompt;
|
|
|
|
public:
|
|
UFortAthenaTutorialTextPrompt();
|
|
};
|
|
|