Opcode.cs 456 B

12345678910111213141516
  1. namespace Model
  2. {
  3. public static partial class Opcode
  4. {
  5. public const ushort C2R_Login = 1001;
  6. public const ushort R2C_Login = 1002;
  7. public const ushort R2C_ServerLog = 1003;
  8. public const ushort C2G_LoginGate = 1004;
  9. public const ushort G2C_LoginGate = 1005;
  10. public const ushort C2G_GetPlayerInfo = 1006;
  11. public const ushort G2C_GetPlayerInfo = 1007;
  12. public const ushort C2M_Reload = 1008;
  13. public const ushort Actor_Test = 2001;
  14. }
  15. }