1234567891011121314 |
- ---@class KLBuffInfoItemView:UIKmlLuaViewBase
- ---@field control_circlebar UIKmlLuaControl
- ---@field text_layer UIKmlLuaControl
- local KLBuffInfoItemView = {}
- setmetatable(KLBuffInfoItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Item/KLBuffInfo/KLBuffInfoItemKml'
- KLBuffInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBuffInfoItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLBuffInfoItemView.content)
- end
- return KLBuffInfoItemView
|