KLRookieGuidePanelView.lua 488 B

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