msg.ts 517 B

1234567891011121314151617181920212223
  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. NotifyPlayerSzNumber = 11,
  15. NotifyPlayerMove = 12,
  16. NotifyPlayerOpt = 13,
  17. NotifyPlayerStatus = 14,
  18. NotifySettlement = 15,
  19. MatchLudo = 16,
  20. ResMatchLudo = 17,
  21. NotifyUpdateRoomInfo = 18,
  22. BeKickLogin = 19,
  23. }