Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Source/SaveExtension/Public/SaveSlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ struct FSaveSlotStats
GENERATED_BODY()

/** Played time since this saved game was started. Not related to slots, slots can change */
UPROPERTY(BlueprintReadOnly, Category = SaveSlot)
UPROPERTY(SaveGame, BlueprintReadOnly, Category = SaveSlot)
FTimespan PlayedTime = FTimespan::Zero();

/** Played time since this saved game was created */
UPROPERTY(BlueprintReadOnly, Category = SaveSlot)
UPROPERTY(SaveGame, BlueprintReadOnly, Category = SaveSlot)
FTimespan SlotPlayedTime = FTimespan::Zero();

/** Last date at which this slot was saved. */
UPROPERTY(BlueprintReadOnly, Category = SaveSlot)
UPROPERTY(SaveGame, BlueprintReadOnly, Category = SaveSlot)
FDateTime SaveDate = FDateTime::Now();

/** Date at which this slot was loaded. */
Expand Down
Loading