源战役客户端
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.
 
 
 
 
 

20 lines
456 B

HookRoleVo = HookRoleVo or BaseClass(RoleVo)
local HookRoleVo = HookRoleVo
local UserMsgAdapter_ReadFmt = UserMsgAdapter.ReadFmt
function HookRoleVo:__init()
self.warGroup = 0
self.is_hook_role = true
end
function HookRoleVo:ReadFromProtocal( )
self.role_id = UserMsgAdapter_ReadFmt("l")
FigureProtoVo.ReadFmt(self)
self.hp_lim,
self.place_id,
self.pos_x,
self.pos_y,
self.move_speed,
self.combat_power = UserMsgAdapter_ReadFmt("ichhhi")
end