12 lines
181 B
C
Executable file
12 lines
181 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EGrabberState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EGrabberState : uint8 {
|
|
StandBy,
|
|
Chase,
|
|
Carry,
|
|
Flee,
|
|
};
|
|
|