25 lines
633 B
C++
Executable file
25 lines
633 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "TutorialHint.generated.h"
|
|
|
|
class UTexture2D;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FTutorialHint {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FText Text;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FText TaskText;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FText Title;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSoftObjectPtr<UTexture2D> Image;
|
|
|
|
FSD_API FTutorialHint();
|
|
};
|
|
|