14 lines
220 B
C
Executable file
14 lines
220 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ERockCrackerstate.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ERockCrackerstate : uint8 {
|
|
Init,
|
|
EFalling,
|
|
EConnect,
|
|
EDrilling,
|
|
EBroke,
|
|
EDone,
|
|
};
|
|
|