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