KLUnionBossMainPanelView.lua 729 B

123456789101112131415161718
  1. ---@class KLUnionBossMainPanelView:UIKmlLuaViewBase
  2. ---@field osa_boss UIKmlLuaControl
  3. ---@field btn_close UIKmlLuaControl
  4. ---@field img_icon_kill UIKmlLuaControl
  5. ---@field osa_reward UIKmlLuaControl
  6. ---@field btn_enter UIKmlLuaControl
  7. ---@field txt_pass_tip UIKmlLuaControl
  8. local KLUnionBossMainPanelView = {}
  9. setmetatable(KLUnionBossMainPanelView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/Union/Panel/KLUnionBossMain/KLUnionBossMainPanelKml'
  11. KLUnionBossMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLUnionBossMainPanelView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLUnionBossMainPanelView.content)
  15. end
  16. return KLUnionBossMainPanelView