12 lines
258 B
C++
Executable file
12 lines
258 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "PickaxeMeshPart.h"
|
|
#include "PickaxePommelPart.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UPickaxePommelPart : public UPickaxeMeshPart {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPickaxePommelPart();
|
|
};
|
|
|