Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
FDT_TutorialTable.h
이 파일의 문서화 페이지로 가기
1#pragma once
2
3#include "CoreMinimal.h"
4#include "Engine/DataTable.h"
5#include "FDT_TutorialTable.generated.h"
6
7
8USTRUCT(BlueprintType)
9struct FDT_TutorialTable : public FTableRowBase
10{
11 GENERATED_BODY()
12
13public:
14 virtual void OnPostDataImport(const UDataTable* InDataTable, const FName InRowName, TArray<FString>& OutCollectedImportProblems) override
15 {
16 Super::OnPostDataImport(InDataTable, InRowName, OutCollectedImportProblems);
17 Tutorial_ID = FCString::Atoi(*InRowName.ToString());
18 }
19
20public:
21 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Tutorial")
22 int32 Tutorial_ID = 0;
23
24 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Tutorial")
25 FText Title;
26
27 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Tutorial")
28 FText Description;
29
30 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Tutorial")
31 FText ControlKey;
32
33 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Tutorial")
34 FText VideoPath;
35};
Definition FDT_TutorialTable.h:10
virtual void OnPostDataImport(const UDataTable *InDataTable, const FName InRowName, TArray< FString > &OutCollectedImportProblems) override
Definition FDT_TutorialTable.h:14