27 lines
730 B
C++
Executable file
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();
|
|
};
|
|
|