Create NakatomiSaveFileInfo struct
This commit is contained in:
parent
b4faa6ce0c
commit
e475a6a365
|
@ -3,13 +3,25 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
#include "CoreMinimal.h"
|
||||||
|
#include "NakatomiSaveFileInfo.generated.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class NAKATOMI_API NakatomiSaveFileInfo
|
USTRUCT(BlueprintType)
|
||||||
|
struct FNakatomiSaveFileInfo
|
||||||
{
|
{
|
||||||
public:
|
GENERATED_BODY()
|
||||||
NakatomiSaveFileInfo();
|
|
||||||
~NakatomiSaveFileInfo();
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Info")
|
||||||
|
FString SaveSlotName;
|
||||||
|
|
||||||
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Info")
|
||||||
|
FString PlayerName;
|
||||||
|
|
||||||
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Info")
|
||||||
|
FString CurrentLevel;
|
||||||
|
|
||||||
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Info")
|
||||||
|
FString DateTimeSaved;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue