|
-
- -- 登陆之前配置请求
- ServerConfigRequest = defClass("ServerConfigRequest"
- -- gameId
- ,defVar("appId", VT_String, "")
- )
-
-
- -- 服务器返回配置
- ServerHallConfigResponse = defClass("ServerHallConfigResponse"
- --json格式的信息
- , defVar("strContent", VT_String, "")
- )
-
- -- 多游戏配置数据
- ServerGamesConfigResponse = defClass("ServerGamesConfigResponse"
- -- 各个游戏的配置信息,json格式,
- , defVar("gameServerConfigList", VT_Vector(VT_String), {})
- )
|