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

35 lines
691 B
C#

using System;
public class EventCode
{
public const byte GameList = 230;
public const byte GameListUpdate = 229;
public const byte QueueState = 228;
public const byte Match = 227;
public const byte AppStats = 226;
public const byte LobbyStats = 224;
[Obsolete("TCP routing was removed after becoming obsolete.")]
public const byte AzureNodeInfo = 210;
public const byte Join = byte.MaxValue;
public const byte Leave = 254;
public const byte PropertiesChanged = 253;
[Obsolete("Use PropertiesChanged now.")]
public const byte SetProperties = 253;
public const byte ErrorInfo = 251;
public const byte CacheSliceChanged = 250;
public const byte AuthEvent = 223;
}