12 lines
211 B
C
Executable file
12 lines
211 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DeepPathFinderSize.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class DeepPathFinderSize : uint8 {
|
|
Invalid,
|
|
Small = 0x3,
|
|
Medium = 0x2,
|
|
Large = 0x1,
|
|
};
|
|
|