mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
12 lines
192 B
C
12 lines
192 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ESOReferenceDrawingMode.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ESOReferenceDrawingMode : uint8 {
|
|
Default,
|
|
Sequence,
|
|
MAX,
|
|
};
|
|
|