HotfixOpcode.cs 289 B

123456789101112
  1. namespace Hotfix
  2. {
  3. public static class HotfixOpcode
  4. {
  5. public const ushort C2R_Login = 10001;
  6. public const ushort R2C_Login = 10002;
  7. public const ushort C2G_LoginGate = 10003;
  8. public const ushort G2C_LoginGate = 10004;
  9. public const ushort G2C_TestHotfixMessage = 10005;
  10. }
  11. }