mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
11 lines
196 B
C
11 lines
196 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortSpawnActorTime.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortSpawnActorTime : uint8 {
|
|
PostPlaylistLoad,
|
|
StartOfStormHoldTime,
|
|
};
|
|
|