KLPrivilegeBossEndPanelView.lua 541 B

123456789101112
  1. ---@class KLPrivilegeBossEndPanelView:UIKmlLuaViewBase
  2. local KLPrivilegeBossEndPanelView = {}
  3. setmetatable(KLPrivilegeBossEndPanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/outui/ChallengeBoss/Panel/KLPrivilegeBossEnd/KLPrivilegeBossEndPanelKml'
  5. KLPrivilegeBossEndPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLPrivilegeBossEndPanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLPrivilegeBossEndPanelView.content)
  9. end
  10. return KLPrivilegeBossEndPanelView