1
0
mirror of synced 2025-02-11 16:33:03 +01:00

14 lines
337 B
C#
Raw Normal View History

2022-08-01 21:39:24 +08:00
namespace GCRelayServer;
public static class RelayPacketTypes
{
public const ushort HEART_BEAT = 0xB0;
public const ushort HEART_BEAT_RESPONSE = 0xB1;
public const ushort START_MATCHING = 0xA0;
public const ushort START_MATCHING_RESPONSE = 0xA1;
public const ushort REGISTER_MATCHING = 0xA6;
}