mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
16 lines
285 B
C
16 lines
285 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortFrontEndFeatureStateReason.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortFrontEndFeatureStateReason : uint8 {
|
|
Default,
|
|
NoHeroes,
|
|
Tutorial,
|
|
BROnly,
|
|
NoPlayerController,
|
|
UnexpectedFeature,
|
|
Invalid,
|
|
};
|
|
|