KLHuntingDemonsMainPanelView.lua 901 B

123456789101112131415161718192021
  1. ---@class KLHuntingDemonsMainPanelView:UIKmlLuaViewBase
  2. ---@field MaskButton UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field img1 UIKmlLuaControl
  5. ---@field togglegroup3 UIKmlLuaControl
  6. ---@field toggle_HallOfFame UIKmlLuaControl
  7. ---@field text5 UIKmlLuaControl
  8. ---@field toggle_Reward UIKmlLuaControl
  9. ---@field text7 UIKmlLuaControl
  10. ---@field button_close UIKmlLuaControl
  11. ---@field img3 UIKmlLuaControl
  12. local KLHuntingDemonsMainPanelView = {}
  13. setmetatable(KLHuntingDemonsMainPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/HuntingDemons/Panel/KLHuntingDemonsMain/KLHuntingDemonsMainPanelKml'
  15. KLHuntingDemonsMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLHuntingDemonsMainPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLHuntingDemonsMainPanelView.content)
  19. end
  20. return KLHuntingDemonsMainPanelView