12 lines
203 B
C
Executable file
12 lines
203 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DeepPathFinderPreference.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class DeepPathFinderPreference : uint8 {
|
|
None,
|
|
Floor,
|
|
Walls,
|
|
Ceiling,
|
|
};
|
|
|