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

22 lines
625 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SchematicBankBase.h"
#include "SchematicBankItem.h"
#include "VictoryPoseSchematicBank.generated.h"
class USchematicCategory;
class UVictoryPose;
UCLASS(Blueprintable)
class FSD_API UVictoryPoseSchematicBank : public USchematicBankBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USchematicCategory* SchematicCategory;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TMap<UVictoryPose*, FSchematicBankItem> VictoryPoses;
UVictoryPoseSchematicBank();
};