DRG-Femboy-Voice/Source/FSD/Public/FSDCloudSaveHandler.h
2025-04-15 12:39:31 -07:00

17 lines
378 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "FSDCloudSaveHandler.generated.h"
UCLASS(Blueprintable)
class UFSDCloudSaveHandler : public UObject {
GENERATED_BODY()
public:
private:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
int32 NumFailedSaves;
public:
UFSDCloudSaveHandler();
};