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

25 lines
704 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SchematicBankBase.h"
#include "SchematicBankItem.h"
#include "VanitySchematicBank.generated.h"
class USchematicCategory;
class UVanityItem;
UCLASS(Blueprintable)
class FSD_API UVanitySchematicBank : public USchematicBankBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USchematicCategory* SchematicCategory;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TMap<UVanityItem*, FSchematicBankItem> VanityItems;
UVanitySchematicBank();
UFUNCTION(BlueprintCallable)
void AppendItems(TArray<UVanityItem*>& toArray) const;
};