Files
2026-02-21 16:45:37 +08:00

19 lines
392 B
C#

namespace ExitGames.Client.Photon.Chat
{
public enum ChatState
{
Uninitialized = 0,
ConnectingToNameServer = 1,
ConnectedToNameServer = 2,
Authenticating = 3,
Authenticated = 4,
DisconnectingFromNameServer = 5,
ConnectingToFrontEnd = 6,
ConnectedToFrontEnd = 7,
DisconnectingFromFrontEnd = 8,
QueuedComingFromFrontEnd = 9,
Disconnecting = 10,
Disconnected = 11
}
}