mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
11 lines
186 B
C
11 lines
186 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EViewerNavigationDirection.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EViewerNavigationDirection : uint8 {
|
|
Previous,
|
|
Next,
|
|
};
|
|
|