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

19 lines
424 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "PickaxePartItem.h"
#include "PickaxeMeshPart.generated.h"
class UStaticMesh;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UPickaxeMeshPart : public UPickaxePartItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSoftObjectPtr<UStaticMesh> Mesh;
public:
UPickaxeMeshPart();
};