Files
FNGameProj/Source/FortniteGame/Public/EFortGameFeatureState.h
2024-01-21 00:41:14 +01:00

19 lines
307 B
C

#pragma once
#include "CoreMinimal.h"
#include "EFortGameFeatureState.generated.h"
UENUM(BlueprintType)
enum class EFortGameFeatureState : uint8 {
Unknown,
Unavailable,
Downloading,
DownloadFailed,
Available,
Preloading,
Preloaded,
Loading,
Loaded,
Count = 0x8,
};