Opcode.cs 431 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Model
  6. {
  7. public static class Opcode
  8. {
  9. public const ushort C2R_Login = 1;
  10. public const ushort R2C_Login = 2;
  11. public const ushort R2C_ServerLog = 3;
  12. public const ushort C2G_LoginGate = 4;
  13. public const ushort G2C_LoginGate = 5;
  14. public const ushort C2G_GetPlayerInfo = 6;
  15. public const ushort G2C_GetPlayerInfo = 7;
  16. }
  17. }