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

20 lines
484 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "FSDEventRewardsSave.generated.h"
USTRUCT(BlueprintType)
struct FFSDEventRewardsSave {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSet<FGuid> EventsSeen;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSet<FGuid> PopupsSeen;
public:
FSD_API FFSDEventRewardsSave();
};