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