---@class KLReviveTipPanelView:UIKmlLuaViewBase ---@field KLReviveTip_Panel UIKmlLuaControl ---@field informationText UIKmlLuaControl ---@field LeftBtn UIKmlLuaControl ---@field LeftBtnText UIKmlLuaControl ---@field RightBtn UIKmlLuaControl ---@field RightBtnText UIKmlLuaControl local KLReviveTipPanelView = {} setmetatable(KLReviveTipPanelView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/Revive/Panel/KLReviveTip/KLReviveTipPanelKml' KLReviveTipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLReviveTipPanelView:Init(parent) self:InitRoot(parent,kmlPath,KLReviveTipPanelView.content) end return KLReviveTipPanelView