mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
27 lines
743 B
C++
27 lines
743 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "FortAthenaTutorialScreen.generated.h"
|
|
|
|
class UFortAthenaTutorialBaseInteraction;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UFortAthenaTutorialScreen : public UUserWidget {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bLimitedDisplayDuration;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float DisplayDuration;
|
|
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UFortAthenaTutorialBaseInteraction* Interaction_TutorialStep;
|
|
|
|
public:
|
|
UFortAthenaTutorialScreen();
|
|
};
|
|
|