12345678910111213 |
- ---@class KLRedDotItemView:UIKmlLuaViewBase
- ---@field redDotItem UIKmlLuaControl
- local KLRedDotItemView = {}
- setmetatable(KLRedDotItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/RedDot/Item/KLRedDot/KLRedDotItemKml'
- KLRedDotItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRedDotItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLRedDotItemView.content)
- end
- return KLRedDotItemView
|