mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
19 lines
307 B
C
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,
|
|
};
|
|
|