diff --git a/Source/Nakatomi/NakatomiSaveFileInfo.h b/Source/Nakatomi/NakatomiSaveFileInfo.h index 1dabcb1..2621e29 100644 --- a/Source/Nakatomi/NakatomiSaveFileInfo.h +++ b/Source/Nakatomi/NakatomiSaveFileInfo.h @@ -3,13 +3,25 @@ #pragma once #include "CoreMinimal.h" +#include "NakatomiSaveFileInfo.generated.h" /** * */ -class NAKATOMI_API NakatomiSaveFileInfo +USTRUCT(BlueprintType) +struct FNakatomiSaveFileInfo { -public: - NakatomiSaveFileInfo(); - ~NakatomiSaveFileInfo(); + GENERATED_BODY() + + 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; };