continuity/Server/Packets/OperationCode.cs

8 lines
112 B
C#
Raw Normal View History

2023-08-10 10:47:35 +02:00
namespace Server.Packets;
2023-08-09 16:23:41 +02:00
public enum OperationCode : ushort
{
LoginInfo = 11,
LoginResponse = 12
2023-08-11 11:31:30 +02:00
}