UENUM(BlueprintType)
enum class ECountdownTimerType : uint8
{
LobbyCountdown UMETA(DisplayName = "Lobby Countdown"),
PreGameplayCountdown UMETA(DisplayName = "PreGameplay Countdown"),
PlayTimeCountdown UMETA(DisplayName = "Play Time"),
PostGameplayCountdown UMETA(DisplayName = "PostGameplay Countdown"),
NoneTypeCountdown UMETA(DisplayName = "None"),
};
UENUM()
enum class EGameplayStatus : uint8
{
WaitingForPlayer UMETA(DisplayName = "Waiting for player"),
PreStart UMETA(DisplayName = "Pre start"),
Play UMETA(DisplayName = "Play"),
PostPlay UMETA(DisplayName = "Post play"),
SeamelessTravelling UMETA(DisplayName = "Seameleslest travelling"),
};