LeviLamina
Loading...
Searching...
No Matches
UserPlatformConnectionState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7enum class UserPlatformConnectionState : int {
8 Anonymous = 0,
9 NotConnected = 1,
10 Connecting = 2,
11 Connected = 3,
12 ConnectionFailed = 4,
13 OfflineOnly = 5,
14 UserBanned = 6,
15};
16
17}