123456789101112131415161718192021222324 |
- ---@class KLEquipDropItemView:UIKmlLuaViewBase
- ---@field img21 UIKmlLuaControl
- ---@field item59 UIKmlLuaControl
- ---@field text60 UIKmlLuaControl
- ---@field text61 UIKmlLuaControl
- ---@field item62 UIKmlLuaControl
- ---@field item63 UIKmlLuaControl
- ---@field button64 UIKmlLuaControl
- ---@field text66 UIKmlLuaControl
- ---@field img70 UIKmlLuaControl
- ---@field img71 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field img10 UIKmlLuaControl
- local KLEquipDropItemView = {}
- setmetatable(KLEquipDropItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ServerActivity/Item/KLEquipDrop/KLEquipDropItemKml'
- KLEquipDropItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipDropItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipDropItemView.content)
- end
- return KLEquipDropItemView
|