KLHuntingDemonsHallOfFamePanelView.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---@class KLHuntingDemonsHallOfFamePanelView:UIKmlLuaViewBase
  2. ---@field img_36 UIKmlLuaControl
  3. ---@field btn_shop UIKmlLuaControl
  4. ---@field btn_go UIKmlLuaControl
  5. ---@field item UIKmlLuaControl
  6. ---@field NumText UIKmlLuaControl
  7. ---@field img_20 UIKmlLuaControl
  8. ---@field text_21 UIKmlLuaControl
  9. ---@field timeText UIKmlLuaControl
  10. ---@field role_mid UIKmlLuaControl
  11. ---@field role_left UIKmlLuaControl
  12. ---@field role_right UIKmlLuaControl
  13. ---@field HelpButton UIKmlLuaControl
  14. ---@field roleTitle1 UIKmlLuaControl
  15. ---@field role_mid_integral_Text UIKmlLuaControl
  16. ---@field role_mid_item_Text UIKmlLuaControl
  17. ---@field role_mid_name_Text UIKmlLuaControl
  18. ---@field roleTitle2 UIKmlLuaControl
  19. ---@field role_left_integral_Text UIKmlLuaControl
  20. ---@field role_left_item_Text UIKmlLuaControl
  21. ---@field role_left_name_Text UIKmlLuaControl
  22. ---@field roleTitle3 UIKmlLuaControl
  23. ---@field role_right_integral_Text UIKmlLuaControl
  24. ---@field role_right_item_Text UIKmlLuaControl
  25. ---@field role_right_name_Text UIKmlLuaControl
  26. local KLHuntingDemonsHallOfFamePanelView = {}
  27. setmetatable(KLHuntingDemonsHallOfFamePanelView,UIKmlLuaViewBase)
  28. local kmlPath = 'dev/outui/HuntingDemons/Panel/KLHuntingDemonsHallOfFame/KLHuntingDemonsHallOfFamePanelKml'
  29. KLHuntingDemonsHallOfFamePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  30. ---@param parent UIKmlLuaControl
  31. function KLHuntingDemonsHallOfFamePanelView:Init(parent)
  32. self:InitRoot(parent,kmlPath,KLHuntingDemonsHallOfFamePanelView.content)
  33. end
  34. return KLHuntingDemonsHallOfFamePanelView