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

22 lines
578 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DeepDiveRewardItem.generated.h"
class USchematic;
USTRUCT(BlueprintType)
struct FDeepDiveRewardItem {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
USchematic* Schematic;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
int32 Stage;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool WasAlreadyGiven;
FSD_API FDeepDiveRewardItem();
};