Opcode.cs 383 B

1234567891011121314
  1. namespace Hotfix
  2. {
  3. public static class Opcode
  4. {
  5. public const ushort C2R_Login = 1;
  6. public const ushort R2C_Login = 2;
  7. public const ushort R2C_ServerLog = 3;
  8. public const ushort C2G_LoginGate = 4;
  9. public const ushort G2C_LoginGate = 5;
  10. public const ushort C2G_GetPlayerInfo = 6;
  11. public const ushort G2C_GetPlayerInfo = 7;
  12. public const ushort C2M_Reload = 8;
  13. }
  14. }