LeviLamina
Loading...
Searching...
No Matches
InviteHandleCheck.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7enum class InviteHandleCheck : int {
8 NotStarted = 0,
9 NotReady = 1,
10 HandleIsForDifferentSession = 2,
11 HandleIsForSameSession = 3,
12 HandleIsRealmsAllowListNotification = 4,
13 HandleIsForLegacySession = 5,
14 Ready = 6,
15 SessionNotFound = 7,
16 Invalid = 8,
17};
18
19}