KLWolfSoulFortressSummonPanelView.lua 1010 B

123456789101112131415161718192021222324
  1. ---@class KLWolfSoulFortressSummonPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field btnClose UIKmlLuaControl
  5. ---@field text4 UIKmlLuaControl
  6. ---@field textGuildMoney UIKmlLuaControl
  7. ---@field text3 UIKmlLuaControl
  8. ---@field textSummonCount UIKmlLuaControl
  9. ---@field text6 UIKmlLuaControl
  10. ---@field textTime UIKmlLuaControl
  11. ---@field summonList UIKmlLuaControl
  12. ---@field summonDataList UIKmlLuaControl
  13. ---@field img1 UIKmlLuaControl
  14. local KLWolfSoulFortressSummonPanelView = {}
  15. setmetatable(KLWolfSoulFortressSummonPanelView,UIKmlLuaViewBase)
  16. local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortressSummon/KLWolfSoulFortressSummonPanelKml'
  17. KLWolfSoulFortressSummonPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  18. ---@param parent UIKmlLuaControl
  19. function KLWolfSoulFortressSummonPanelView:Init(parent)
  20. self:InitRoot(parent,kmlPath,KLWolfSoulFortressSummonPanelView.content)
  21. end
  22. return KLWolfSoulFortressSummonPanelView