KLMountInfoItemView.lua 684 B

123456789101112131415161718
  1. ---@class KLMountInfoItemView:UIKmlLuaViewBase
  2. ---@field selectToggle UIKmlLuaControl
  3. ---@field item_model UIKmlLuaControl
  4. ---@field tipClick UIKmlLuaControl
  5. ---@field mountName UIKmlLuaControl
  6. ---@field wear_mount_icon UIKmlLuaControl
  7. ---@field endTime UIKmlLuaControl
  8. local KLMountInfoItemView = {}
  9. setmetatable(KLMountInfoItemView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/Mount/Item/KLMountInfo/KLMountInfoItemKml'
  11. KLMountInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLMountInfoItemView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLMountInfoItemView.content)
  15. end
  16. return KLMountInfoItemView