mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
25 lines
544 B
C++
25 lines
544 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EMatchmakingState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
namespace EMatchmakingState {
|
|
enum Type {
|
|
NotMatchmaking,
|
|
CancelingMatchmaking,
|
|
ReleasingLock,
|
|
AcquiringLock,
|
|
LockAcquistionFailure,
|
|
FindingEmptyServer,
|
|
FindingExistingSession,
|
|
TestingEmptyServers,
|
|
TestingExistingSessions,
|
|
JoiningExistingSession,
|
|
NoMatchesAvailable,
|
|
CleaningUpExisting,
|
|
HandlingFailure,
|
|
JoinSuccess,
|
|
};
|
|
}
|
|
|