#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 Schematics; public: USchematicBank(); UFUNCTION(BlueprintCallable) void AddSchematic(USchematic* Schematic); };