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

25 lines
636 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SchematicItem.h"
#include "ResourceSchematicItem.generated.h"
class UResourceData;
UCLASS(Blueprintable, EditInlineNew)
class UResourceSchematicItem : public USchematicItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Credits;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UResourceData* Resource;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 ResourceAmount;
public:
UResourceSchematicItem();
};