namespace GServer.Common.Networking.Enums; public enum ClientPacketIn : byte { /// /// Represents an auth result from the server. /// AUTH_RESPONSE = 1, /// /// Contains a list of server listings. /// LIST_SERVERS_RESPONSE = 2, UNKNOWN = 255 }