KLUIChallengeBossPosItemView.lua 659 B

123456789101112131415
  1. ---@class KLUIChallengeBossBtnItemView:UIKmlLuaViewBase
  2. ---@field btn UIKmlLuaControl
  3. ---@field level_select UIKmlLuaControl
  4. ---@field type_name UIKmlLuaControl
  5. local KLUIChallengeBossBtnItemView = {}
  6. setmetatable(KLUIChallengeBossBtnItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIChallengeBossPosItem/KLUIChallengeBossPosItemKml'
  8. KLUIChallengeBossBtnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLUIChallengeBossBtnItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLUIChallengeBossBtnItemView.content)
  12. end
  13. return KLUIChallengeBossBtnItemView