11 lines
179 B
C
Executable file
11 lines
179 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EPatrolBotState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EPatrolBotState : uint8 {
|
|
Rolling,
|
|
Flying,
|
|
Disabled,
|
|
};
|
|
|