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

19 lines
453 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DeepDiveBank.generated.h"
class UDeepDive;
USTRUCT(BlueprintType)
struct FDeepDiveBank {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
UDeepDive* NormalDeepDive;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
UDeepDive* HardDeepDive;
FSD_API FDeepDiveBank();
};