LeviLamina
Loading...
Searching...
No Matches
SignInResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7enum class SignInResult : int {
8 Unknown = -1,
9 Success = 0,
10 Failure = 1,
11 UserActionRequired = 2,
12 Canceled = 3,
13 SandboxFailure = 4,
14 InternetTimeout = 5,
15 IncorrectAccount = 6,
16 PlayerBanned = 7,
17};
18
19}