continuity/Server/Packets/OperationCode.cs

9 lines
131 B
C#
Raw Normal View History

2023-10-12 09:15:34 +02:00
namespace Server.Packets;
2023-08-09 16:23:41 +02:00
public enum OperationCode : ushort
{
LoginInfo = 11,
2023-08-14 22:22:43 +02:00
LoginResponse = 12,
ChannelSelection
2023-08-11 11:31:30 +02:00
}