---@class KLTaskGuidePanelView:UIKmlLuaViewBase ---@field closeMask UIKmlLuaControl ---@field task_guide_layout UIKmlLuaControl ---@field task_guide_list UIKmlLuaControl local KLTaskGuidePanelView = {} setmetatable(KLTaskGuidePanelView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/Task/Panel/KLTaskGuide/KLTaskGuidePanelKml' KLTaskGuidePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLTaskGuidePanelView:Init(parent) self:InitRoot(parent,kmlPath,KLTaskGuidePanelView.content) end return KLTaskGuidePanelView