KLOffHookInfoItemView.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---@class KLOffHookInfoItemView:UIKmlLuaViewBase
  2. ---@field Bg UIKmlLuaControl
  3. ---@field Describe UIKmlLuaControl
  4. ---@field offlineTitleTxt UIKmlLuaControl
  5. ---@field txtOffline UIKmlLuaControl
  6. ---@field fightMonsterTimeTitleTxt UIKmlLuaControl
  7. ---@field txtFightMonsterTime UIKmlLuaControl
  8. ---@field fightMonsterExpTitleTxt UIKmlLuaControl
  9. ---@field txtFightMonsterExp UIKmlLuaControl
  10. ---@field bubbleTimeTitleTxt UIKmlLuaControl
  11. ---@field txtBubbleTime UIKmlLuaControl
  12. ---@field bubbleExpTitleTxt UIKmlLuaControl
  13. ---@field txtBubbleExp UIKmlLuaControl
  14. ---@field offHookLogs UIKmlLuaControl
  15. ---@field logBg UIKmlLuaControl
  16. ---@field logInfoTitte UIKmlLuaControl
  17. ---@field scrollview UIKmlLuaControl
  18. ---@field layout2 UIKmlLuaControl
  19. ---@field logInfoTxt UIKmlLuaControl
  20. ---@field btnHelp UIKmlLuaControl
  21. ---@field layout UIKmlLuaControl
  22. ---@field Exp UIKmlLuaControl
  23. ---@field text1 UIKmlLuaControl
  24. ---@field totleExp UIKmlLuaControl
  25. ---@field receiveExpBtn UIKmlLuaControl
  26. ---@field redDot UIKmlLuaControl
  27. local KLOffHookInfoItemView = {}
  28. setmetatable(KLOffHookInfoItemView,UIKmlLuaViewBase)
  29. local kmlPath = 'dev/outui/Hook/Item/KLOffHookInfo/KLOffHookInfoItemKml'
  30. KLOffHookInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  31. ---@param parent UIKmlLuaControl
  32. function KLOffHookInfoItemView:Init(parent)
  33. self:InitRoot(parent,kmlPath,KLOffHookInfoItemView.content)
  34. end
  35. return KLOffHookInfoItemView