19 lines
416 B
C++
Executable file
19 lines
416 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EPickaxePartLocation.h"
|
|
#include "DefaultPickaxeParts.generated.h"
|
|
|
|
class UPickaxePart;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FDefaultPickaxeParts {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TMap<EPickaxePartLocation, UPickaxePart*> Parts;
|
|
|
|
public:
|
|
FSD_API FDefaultPickaxeParts();
|
|
};
|
|
|