mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-29 04:03:37 +00:00
19 lines
368 B
C++
19 lines
368 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortSessionHelperJoinState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
namespace EFortSessionHelperJoinState {
|
|
enum Type {
|
|
NotJoining,
|
|
RequestingReservation,
|
|
FailedReservation,
|
|
WaitingOnGame,
|
|
AttemptingJoin,
|
|
JoiningSession,
|
|
FailedJoin,
|
|
CanceledJoin,
|
|
};
|
|
}
|
|
|