| 12345678910111213141516171819202122232425262728 |
- -- Warning: do not edit this file.
- -- 警告: 不要编辑此文件
- -- OpenCards.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- -- OpenCards.Core.Data.RankHeroScoreData
- local _M = {MessageID = 0x00023401,Name = 'OpenCards.Core.Data.RankHeroScoreData'}
- _M.__index = _M
- function _M.IsSuccess(self)
- return self.s2c_code ~= nil and self.s2c_code >= 200 and self.s2c_code <= 299
- end
- Protocol.Serializer[0x00023401] = _M
- Protocol.Serializer.StringDefined['OpenCards.Core.Data.RankHeroScoreData'] = _M
- function _M.Write(output,data)
-
- output:PutMap(data.heroTopScoreList, output.PutS32, output.PutS32,'int', 'int')
- end
- function _M.Read(input,data)
-
- data.heroTopScoreList = input:GetMap(input.GetS32, input.GetS32,'int', 'int')
- end
|