17 lines
384 B
C++
Executable file
17 lines
384 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Mutator.h"
|
|
#include "CraftingMaterialMutator.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UCraftingMaterialMutator : public UMutator {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float modifier;
|
|
|
|
public:
|
|
UCraftingMaterialMutator();
|
|
};
|
|
|