LEAP Documentation 40220
Documentation for the LEAP project
ProjectXTutorialTextDataAsset.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2018. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Engine/DataAsset.h"
7#include "ProjectXTutorialTextDataAsset.generated.h"
8
9USTRUCT(BlueprintType)
11{
12 GENERATED_USTRUCT_BODY()
13
14 UPROPERTY(EditAnywhere, BlueprintReadOnly)
15 TArray<FText> TutorialTextData;
16};
17
18UCLASS(BlueprintType)
19class UProjectXTutorialTextDataAsset : public UDataAsset
20{
21 GENERATED_BODY()
22
23public:
24 UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Data")
25 FTutorialTextData TutorialData;
26};
Definition: ProjectXTutorialTextDataAsset.h:20
Definition: ProjectXTutorialTextDataAsset.h:11