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

22 lines
484 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SchematicBankBase.h"
#include "SchematicBank.generated.h"
class USchematic;
UCLASS(Blueprintable)
class FSD_API USchematicBank : public USchematicBankBase {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSet<USchematic*> Schematics;
public:
USchematicBank();
UFUNCTION(BlueprintCallable)
void AddSchematic(USchematic* Schematic);
};