| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using ETModel;
- namespace ETModel
- {
- [Message(OuterOpcode.Actor_Test)]
- public partial class Actor_Test : IActorMessage {}
- [Message(OuterOpcode.Actor_TestRequest)]
- public partial class Actor_TestRequest : IActorLocationRequest {}
- [Message(OuterOpcode.Actor_TestResponse)]
- public partial class Actor_TestResponse : IActorLocationResponse {}
- [Message(OuterOpcode.Actor_TransferRequest)]
- public partial class Actor_TransferRequest : IActorLocationRequest {}
- [Message(OuterOpcode.Actor_TransferResponse)]
- public partial class Actor_TransferResponse : IActorLocationResponse {}
- [Message(OuterOpcode.C2G_EnterMap)]
- public partial class C2G_EnterMap : IRequest {}
- [Message(OuterOpcode.G2C_EnterMap)]
- public partial class G2C_EnterMap : IResponse {}
- // 自己的unit id
- // 所有的unit
- [Message(OuterOpcode.UnitInfo)]
- public partial class UnitInfo {}
- [Message(OuterOpcode.Actor_CreateUnits)]
- public partial class Actor_CreateUnits : IActorMessage {}
- [Message(OuterOpcode.Frame_ClickMap)]
- public partial class Frame_ClickMap : IActorLocationMessage {}
- [Message(OuterOpcode.M2C_PathfindingResult)]
- public partial class M2C_PathfindingResult : IActorMessage {}
- [Message(OuterOpcode.C2R_Ping)]
- public partial class C2R_Ping : IRequest {}
- [Message(OuterOpcode.R2C_Ping)]
- public partial class R2C_Ping : IResponse {}
- [Message(OuterOpcode.G2C_Test)]
- public partial class G2C_Test : IMessage {}
- [Message(OuterOpcode.C2M_Reload)]
- public partial class C2M_Reload : IRequest {}
- [Message(OuterOpcode.M2C_Reload)]
- public partial class M2C_Reload : IResponse {}
- }
- namespace ETModel
- {
- public static partial class OuterOpcode
- {
- public const ushort Actor_Test = 101;
- public const ushort Actor_TestRequest = 102;
- public const ushort Actor_TestResponse = 103;
- public const ushort Actor_TransferRequest = 104;
- public const ushort Actor_TransferResponse = 105;
- public const ushort C2G_EnterMap = 106;
- public const ushort G2C_EnterMap = 107;
- public const ushort UnitInfo = 108;
- public const ushort Actor_CreateUnits = 109;
- public const ushort Frame_ClickMap = 110;
- public const ushort M2C_PathfindingResult = 111;
- public const ushort C2R_Ping = 112;
- public const ushort R2C_Ping = 113;
- public const ushort G2C_Test = 114;
- public const ushort C2M_Reload = 115;
- public const ushort M2C_Reload = 116;
- }
- }
|