7 lines
112 B
C#
7 lines
112 B
C#
namespace Server.Packets;
|
|
|
|
public enum OperationCode : ushort
|
|
{
|
|
LoginInfo = 11,
|
|
LoginResponse = 12
|
|
}
|