Opcode.cs 743 字节
Newer Older
T
tanghai 已提交
1
namespace Model
2
{
3
	public static partial class Opcode
4
	{
5
		public const ushort FrameMessage = 1;
6 7 8 9 10 11 12 13
		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;
14

15
		public const ushort Actor_Test = 2001;
T
tanghai 已提交
16 17 18 19
		public const ushort Actor_TestRequest = 2002;
		public const ushort Actor_TestResponse = 2003;
		public const ushort Actor_TransferRequest = 2004;
		public const ushort Actor_TransferResponse = 2005;
20
		public const ushort Frame_ClickMap = 2006;
21 22
	}
}