msg.ts 448 B

12345678910111213141516171819202122
  1. // 自动生成的消息ID映射
  2. export enum MsgID {
  3. Hello = 0,
  4. ReqLogin = 1,
  5. ResLogin = 2,
  6. EnterHall = 3,
  7. LeaveHall = 4,
  8. ResJoinRoom = 5,
  9. ReqJoinRoom = 6,
  10. PlayList = 7,
  11. Shop = 8,
  12. ReqGameInfo = 9,
  13. ResGameInfo = 10,
  14. TeenPattiRoomList = 11,
  15. TeenPattiRoom = 12,
  16. ReqDealCard = 13,
  17. ReqPlayerAction = 14,
  18. ResPlayerOptAction = 15,
  19. PlayerOpt = 16,
  20. ReqRound = 17,
  21. MsgError = 18,
  22. }