KLQuintonInvasionRewardPanelView.lua 722 B

12345678910111213141516
  1. ---@class KLQuintonInvasionRewardPanelView:UIKmlLuaViewBase
  2. ---@field model_item UIKmlLuaControl
  3. ---@field model UIKmlLuaControl
  4. ---@field rewardList UIKmlLuaControl
  5. ---@field closeBtn UIKmlLuaControl
  6. local KLQuintonInvasionRewardPanelView = {}
  7. setmetatable(KLQuintonInvasionRewardPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/Activity/Panel/KLQuintonInvasionReward/KLQuintonInvasionRewardPanelKml'
  9. KLQuintonInvasionRewardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLQuintonInvasionRewardPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLQuintonInvasionRewardPanelView.content)
  13. end
  14. return KLQuintonInvasionRewardPanelView