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

22 lines
494 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SchematicItem.h"
#include "VanitySchematicItem.generated.h"
class UVanityItem;
UCLASS(Blueprintable, EditInlineNew)
class UVanitySchematicItem : public USchematicItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UVanityItem* Item;
public:
UVanitySchematicItem();
UFUNCTION(BlueprintCallable, BlueprintPure)
UVanityItem* GetVanityItem();
};