KLUIBossHpPanelView.lua 815 B

12345678910111213141516171819202122
  1. ---@class KLUIBossHpPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field sliderHp UIKmlLuaControl
  4. ---@field sliderHp2 UIKmlLuaControl
  5. ---@field name UIKmlLuaControl
  6. ---@field club_name UIKmlLuaControl
  7. ---@field icon UIKmlLuaControl
  8. ---@field KLUIBossHpButton UIKmlLuaControl
  9. ---@field item_layout UIKmlLuaControl
  10. ---@field drop_data_list UIKmlLuaControl
  11. ---@field snatchBtn UIKmlLuaControl
  12. local KLUIBossHpPanelView = {}
  13. setmetatable(KLUIBossHpPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/ui/MainUI/Panel/KLUIBossHp/KLUIBossHpPanelKml'
  15. KLUIBossHpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLUIBossHpPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLUIBossHpPanelView.content)
  19. end
  20. return KLUIBossHpPanelView