KLUIChallengeBossHurtItemView.lua 668 B

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