KLPrivilegeBossOpenPanelView.lua 495 B

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