KLRedFortTaskPanelView.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ---@class KLRedFortTaskPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field img2 UIKmlLuaControl
  5. ---@field img3 UIKmlLuaControl
  6. ---@field exitBtn UIKmlLuaControl
  7. ---@field title UIKmlLuaControl
  8. ---@field textSetout UIKmlLuaControl
  9. ---@field textSetoutTime UIKmlLuaControl
  10. ---@field text30 UIKmlLuaControl
  11. ---@field textTime UIKmlLuaControl
  12. ---@field textJoin UIKmlLuaControl
  13. ---@field text6 UIKmlLuaControl
  14. ---@field textJoinCoun UIKmlLuaControl
  15. ---@field textTarget UIKmlLuaControl
  16. ---@field textPlayer UIKmlLuaControl
  17. ---@field text11 UIKmlLuaControl
  18. ---@field textPlayerCount UIKmlLuaControl
  19. ---@field textRevive UIKmlLuaControl
  20. ---@field text15 UIKmlLuaControl
  21. ---@field textReviveCount UIKmlLuaControl
  22. ---@field textFightTime UIKmlLuaControl
  23. local KLRedFortTaskPanelView = {}
  24. setmetatable(KLRedFortTaskPanelView,UIKmlLuaViewBase)
  25. local kmlPath = 'dev/outui/Activity/Panel/KLRedFortTask/KLRedFortTaskPanelKml'
  26. KLRedFortTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  27. ---@param parent UIKmlLuaControl
  28. function KLRedFortTaskPanelView:Init(parent)
  29. self:InitRoot(parent,kmlPath,KLRedFortTaskPanelView.content)
  30. end
  31. return KLRedFortTaskPanelView