msg.ts 601 B

123456789101112131415161718192021222324252627
  1. // 自动生成的消息ID映射
  2. export enum MsgID {
  3. ReqLogin = 0,
  4. ResLogin = 1,
  5. ReqRegister = 2,
  6. ResRegister = 3,
  7. EnterHall = 4,
  8. ResEnterHall = 5,
  9. LeaveHall = 6,
  10. ResHeartBeat = 7,
  11. ReqHeartBeat = 8,
  12. SendColorSz = 9,
  13. SendRoleMove = 10,
  14. SendQuitRoom = 11,
  15. NotifyPlayerSzNumber = 12,
  16. NotifyPlayerMove = 13,
  17. NotifyPlayerOpt = 14,
  18. NotifyPlayerStatus = 15,
  19. NotifySettlement = 16,
  20. MatchLudo = 17,
  21. ResMatchLudo = 18,
  22. NotifyUpdateRoomInfo = 19,
  23. BeKickLogin = 20,
  24. UpdateUserInfo = 21,
  25. ReqShop = 22,
  26. ResShop = 23,
  27. }