| 1234567891011121314151617181920212223242526272829303132 |
- -- Warning: do not edit this file.
- -- 警告: 不要编辑此文件
- -- OpenCards.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- -- OpenCards.Core.Protocol.Client.ClientFriendListResponse
- local _M = {MessageID = 0x00038003,Name = 'OpenCards.Core.Protocol.Client.ClientFriendListResponse'}
- _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[0x00038003] = _M
- Protocol.Serializer.StringDefined['OpenCards.Core.Protocol.Client.ClientFriendListResponse'] = _M
- function _M.Write(output,data)
- Protocol.Serializer.StringDefined['OpenCards.Core.Protocol.Client.FriendResponse'].Write(output, data)
- output:PutList(data.s2c_list, output.PutOBJ,'OpenCards.Core.Data.FriendData')
- output:PutS32(data.s2c_friendPointCount)
- output:PutS32(data.s2c_getCount)
- end
- function _M.Read(input,data)
- Protocol.Serializer.StringDefined['OpenCards.Core.Protocol.Client.FriendResponse'].Read(input, data)
- data.s2c_list = input:GetList(input.GetOBJ,'OpenCards.Core.Data.FriendData')
- data.s2c_friendPointCount = input:GetS32()
- data.s2c_getCount = input:GetS32()
- end
|