KLBigSecretCopyRewardPanelView.lua 568 B

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