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

27 lines
730 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ItemAquisitionBase.h"
#include "SchematicAquisition.generated.h"
class USchematic;
class USchematicPricingTier;
class USchematicRarity;
UCLASS(Blueprintable, EditInlineNew)
class FSD_API USchematicAquisition : public UItemAquisitionBase {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USchematicPricingTier* PricingTier;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USchematicRarity* Rarity;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<USchematic*> Schematics;
public:
USchematicAquisition();
};