HotfixOpcode.cs 391 B

12345678910111213
  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. public const ushort C2M_TestActorRequest = 10006;
  11. public const ushort M2C_TestActorResponse = 10007;
  12. }
  13. }