You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
480 B

  1. -- 登陆之前配置请求
  2. ServerConfigRequest = defClass("ServerConfigRequest"
  3. -- gameId
  4. ,defVar("appId", VT_String, "")
  5. )
  6. -- 服务器返回配置
  7. ServerHallConfigResponse = defClass("ServerHallConfigResponse"
  8. --json格式的信息
  9. , defVar("strContent", VT_String, "")
  10. )
  11. -- 多游戏配置数据
  12. ServerGamesConfigResponse = defClass("ServerGamesConfigResponse"
  13. -- 各个游戏的配置信息,json格式,
  14. , defVar("gameServerConfigList", VT_Vector(VT_String), {})
  15. )