KLWolfSoulFortressTaskPanelView.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---@class KLWolfSoulFortressTaskPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field img4 UIKmlLuaControl
  4. ---@field text1 UIKmlLuaControl
  5. ---@field img2 UIKmlLuaControl
  6. ---@field img3 UIKmlLuaControl
  7. ---@field btnHelp UIKmlLuaControl
  8. ---@field timerTitle UIKmlLuaControl
  9. ---@field timeText UIKmlLuaControl
  10. ---@field textRoot UIKmlLuaControl
  11. ---@field text_1 UIKmlLuaControl
  12. ---@field text_2 UIKmlLuaControl
  13. ---@field textSummonCount UIKmlLuaControl
  14. ---@field btnSummon UIKmlLuaControl
  15. ---@field textRoot_2 UIKmlLuaControl
  16. ---@field textKey_1 UIKmlLuaControl
  17. ---@field textWolfHp UIKmlLuaControl
  18. ---@field textKey_2 UIKmlLuaControl
  19. ---@field textScore UIKmlLuaControl
  20. ---@field textKey_3 UIKmlLuaControl
  21. ---@field textRank UIKmlLuaControl
  22. ---@field textKey_4 UIKmlLuaControl
  23. ---@field textFightCount UIKmlLuaControl
  24. ---@field btnExit UIKmlLuaControl
  25. ---@field timeText_2 UIKmlLuaControl
  26. local KLWolfSoulFortressTaskPanelView = {}
  27. setmetatable(KLWolfSoulFortressTaskPanelView,UIKmlLuaViewBase)
  28. local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortressTask/KLWolfSoulFortressTaskPanelKml'
  29. KLWolfSoulFortressTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  30. ---@param parent UIKmlLuaControl
  31. function KLWolfSoulFortressTaskPanelView:Init(parent)
  32. self:InitRoot(parent,kmlPath,KLWolfSoulFortressTaskPanelView.content)
  33. end
  34. return KLWolfSoulFortressTaskPanelView