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