RUDPClient/Assets/Scripts/Network/NetworkApplication/SessionEventKind.cs

17 lines
368 B
C#

namespace Network.NetworkApplication
{
public enum SessionEventKind
{
TransportConnected = 0,
LoginStarted = 1,
LoginSucceeded = 2,
LoginFailed = 3,
HeartbeatSent = 4,
HeartbeatReceived = 5,
TimedOut = 6,
ReconnectScheduled = 7,
ReconnectStarted = 8,
Disconnected = 9,
}
}