---@class KLHookSkillItemView:UIKmlLuaViewBase ---@field hookSkill_item UIKmlLuaControl ---@field skillIcon UIKmlLuaControl ---@field skillName UIKmlLuaControl ---@field skillLevel UIKmlLuaControl ---@field selectToggle UIKmlLuaControl local KLHookSkillItemView = {} setmetatable(KLHookSkillItemView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/Setting/Item/KLHookSkill/KLHookSkillItemKml' KLHookSkillItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLHookSkillItemView:Init(parent) self:InitRoot(parent,kmlPath,KLHookSkillItemView.content) end return KLHookSkillItemView