11 lines
178 B
C
Executable file
11 lines
178 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EIndicatorMode.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EIndicatorMode : uint8 {
|
|
EConstant,
|
|
EFlashing,
|
|
EOff,
|
|
};
|
|
|