---@class KLUISystemItemView:UIKmlLuaViewBase ---@field sysIcon UIKmlLuaControl ---@field red UIKmlLuaControl ---@field TimeText UIKmlLuaControl local KLUISystemItemView = {} setmetatable(KLUISystemItemView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/MainUI/Item/KLUISystem/KLUISystemItemKml' KLUISystemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLUISystemItemView:Init(parent) self:InitRoot(parent,kmlPath,KLUISystemItemView.content) end return KLUISystemItemView