12345678910111213141516 |
- ---@class KLUIChallengeBossLineItemView:UIKmlLuaViewBase
- ---@field btn UIKmlLuaControl
- ---@field name UIKmlLuaControl
- ---@field level UIKmlLuaControl
- ---@field num UIKmlLuaControl
- local KLUIChallengeBossLineItemView = {}
- setmetatable(KLUIChallengeBossLineItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIChallengeBossLineItem/KLUIChallengeBossLineItemKml'
- KLUIChallengeBossLineItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIChallengeBossLineItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIChallengeBossLineItemView.content)
- end
- return KLUIChallengeBossLineItemView
|