12345678910111213 |
- ---@class KLMapTransferIconItemView:UIKmlLuaViewBase
- ---@field txt_name UIKmlLuaControl
- local KLMapTransferIconItemView = {}
- setmetatable(KLMapTransferIconItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Item/KLMapTransferIcon/KLMapTransferIconItemKml'
- KLMapTransferIconItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMapTransferIconItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLMapTransferIconItemView.content)
- end
- return KLMapTransferIconItemView
|