13 lines
196 B
C
Executable file
13 lines
196 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EBinaryComb.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EBinaryComb : uint8 {
|
|
Empty,
|
|
Unchanged,
|
|
Replace,
|
|
Burn,
|
|
BiomeRock,
|
|
};
|
|
|