1234567891011121314 |
- ---@class KLUIBuffInfoPanelView:UIKmlLuaViewBase
- ---@field buffBg UIKmlLuaControl
- ---@field des UIKmlLuaControl
- local KLUIBuffInfoPanelView = {}
- setmetatable(KLUIBuffInfoPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUIBuffInfo/KLUIBuffInfoPanelKml'
- KLUIBuffInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIBuffInfoPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIBuffInfoPanelView.content)
- end
- return KLUIBuffInfoPanelView
|