KLUIChallengeBossLineItemView.lua 686 B

12345678910111213141516
  1. ---@class KLUIChallengeBossLineItemView:UIKmlLuaViewBase
  2. ---@field btn UIKmlLuaControl
  3. ---@field name UIKmlLuaControl
  4. ---@field level UIKmlLuaControl
  5. ---@field num UIKmlLuaControl
  6. local KLUIChallengeBossLineItemView = {}
  7. setmetatable(KLUIChallengeBossLineItemView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIChallengeBossLineItem/KLUIChallengeBossLineItemKml'
  9. KLUIChallengeBossLineItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLUIChallengeBossLineItemView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLUIChallengeBossLineItemView.content)
  13. end
  14. return KLUIChallengeBossLineItemView