mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
17 lines
351 B
C
17 lines
351 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortLevelStreamingState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum EFortLevelStreamingState {
|
|
LSS_Unloaded,
|
|
LSS_Loaded,
|
|
LSS_UnconditionalFoundationsUpdated,
|
|
LSS_AllFoundationsUpdated,
|
|
LSS_NewActorsCreatedButNotUpdated,
|
|
LSS_AllUpdated,
|
|
LSS_Ready,
|
|
LSS_MAX UMETA(Hidden),
|
|
};
|
|
|