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

20 lines
519 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Templates/SubclassOf.h"
#include "GuntowerModuleLevel.generated.h"
class AGuntowerModule;
USTRUCT(BlueprintType)
struct FGuntowerModuleLevel {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<TSubclassOf<AGuntowerModule>> PossibleModules;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool PreventDuplication;
FSD_API FGuntowerModuleLevel();
};