KLBigSecretCopyPanelView.lua 514 B

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