12345678910111213 |
- ---@class KLCommonImageItemView:UIKmlLuaViewBase
- ---@field img UIKmlLuaControl
- local KLCommonImageItemView = {}
- setmetatable(KLCommonImageItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Equip/Item/KLCommonImage/KLCommonImageItemKml'
- KLCommonImageItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLCommonImageItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLCommonImageItemView.content)
- end
- return KLCommonImageItemView
|