KLQuintonInvasionPanelView.lua 784 B

12345678910111213141516171819
  1. ---@class KLQuintonInvasionPanelView:UIKmlLuaViewBase
  2. ---@field enterTimeDes UIKmlLuaControl
  3. ---@field enterLevel UIKmlLuaControl
  4. ---@field activity_des UIKmlLuaControl
  5. ---@field rewardList UIKmlLuaControl
  6. ---@field rewardBtn UIKmlLuaControl
  7. ---@field enterBtn UIKmlLuaControl
  8. ---@field shopBtn UIKmlLuaControl
  9. local KLQuintonInvasionPanelView = {}
  10. setmetatable(KLQuintonInvasionPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/Activity/Panel/KLQuintonInvasion/KLQuintonInvasionPanelKml'
  12. KLQuintonInvasionPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLQuintonInvasionPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLQuintonInvasionPanelView.content)
  16. end
  17. return KLQuintonInvasionPanelView