KLUIPrivilegeIntroducePanelView.lua 573 B

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