123456789101112131415161718 |
- ---@class KLMountInfoItemView:UIKmlLuaViewBase
- ---@field selectToggle UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field tipClick UIKmlLuaControl
- ---@field mountName UIKmlLuaControl
- ---@field wear_mount_icon UIKmlLuaControl
- ---@field endTime UIKmlLuaControl
- local KLMountInfoItemView = {}
- setmetatable(KLMountInfoItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Mount/Item/KLMountInfo/KLMountInfoItemKml'
- KLMountInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMountInfoItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMountInfoItemView.content)
- end
- return KLMountInfoItemView
|