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