Opcode.cs 414 字节
Newer Older
T
tanghai 已提交
1
namespace Model
2
{
3
	public static partial class Opcode
4
	{
5 6 7 8 9 10 11 12
		public const ushort C2R_Login = 1001;
		public const ushort R2C_Login = 1002;
		public const ushort R2C_ServerLog = 1003;
		public const ushort C2G_LoginGate = 1004;
		public const ushort G2C_LoginGate = 1005;
		public const ushort C2G_GetPlayerInfo = 1006;
		public const ushort G2C_GetPlayerInfo = 1007;
		public const ushort C2M_Reload = 1008;
13 14
	}
}