KLBigSecretCopyTaskPanelView.lua 549 B

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