KLUIEfficiencyPanelView.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ---@class KLUIEfficiencyPanelView:UIKmlLuaViewBase
  2. ---@field BG UIKmlLuaControl
  3. ---@field UI UIKmlLuaControl
  4. ---@field TogList UIKmlLuaControl
  5. ---@field MultiplierToggle UIKmlLuaControl
  6. ---@field text2 UIKmlLuaControl
  7. ---@field PickupToggle UIKmlLuaControl
  8. ---@field text3 UIKmlLuaControl
  9. ---@field ExplosionRateToggle UIKmlLuaControl
  10. ---@field text5 UIKmlLuaControl
  11. ---@field LevelText UIKmlLuaControl
  12. ---@field LvLimit UIKmlLuaControl
  13. ---@field reward UIKmlLuaControl
  14. ---@field HighImageBtn UIKmlLuaControl
  15. ---@field togglegroup UIKmlLuaControl
  16. ---@field CloseBtn UIKmlLuaControl
  17. ---@field MultiplierPanel UIKmlLuaControl
  18. ---@field list UIKmlLuaControl
  19. ---@field bg1 UIKmlLuaControl
  20. ---@field ButtonOpenServer UIKmlLuaControl
  21. ---@field ButtonGift UIKmlLuaControl
  22. ---@field ButtonBuy UIKmlLuaControl
  23. ---@field img2 UIKmlLuaControl
  24. ---@field text4 UIKmlLuaControl
  25. ---@field model6 UIKmlLuaControl
  26. ---@field bg2 UIKmlLuaControl
  27. ---@field ButtonActive UIKmlLuaControl
  28. ---@field PickupPanel UIKmlLuaControl
  29. ---@field img14 UIKmlLuaControl
  30. ---@field img7 UIKmlLuaControl
  31. ---@field Pickup_Button UIKmlLuaControl
  32. ---@field ExplosionRatePanel UIKmlLuaControl
  33. ---@field img18 UIKmlLuaControl
  34. ---@field ExplosionRate_Button UIKmlLuaControl
  35. ---@field TextRate UIKmlLuaControl
  36. ---@field MiracleCoinsPanel UIKmlLuaControl
  37. ---@field layout22 UIKmlLuaControl
  38. ---@field img23 UIKmlLuaControl
  39. ---@field DailyCardButton UIKmlLuaControl
  40. ---@field img27 UIKmlLuaControl
  41. ---@field MiracleCoinsWeek UIKmlLuaControl
  42. ---@field img1 UIKmlLuaControl
  43. local KLUIEfficiencyPanelView = {}
  44. setmetatable(KLUIEfficiencyPanelView,UIKmlLuaViewBase)
  45. local kmlPath = 'dev/outui/Efficiency/Panel/KLUIEfficiency/KLUIEfficiencyPanelKml'
  46. KLUIEfficiencyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  47. ---@param parent UIKmlLuaControl
  48. function KLUIEfficiencyPanelView:Init(parent)
  49. self:InitRoot(parent,kmlPath,KLUIEfficiencyPanelView.content)
  50. end
  51. return KLUIEfficiencyPanelView