KLMapNpcIconItemView.lua 527 B

1234567891011121314
  1. ---@class KLMapNpcIconItemView:UIKmlLuaViewBase
  2. ---@field icon UIKmlLuaControl
  3. ---@field txt_name UIKmlLuaControl
  4. local KLMapNpcIconItemView = {}
  5. setmetatable(KLMapNpcIconItemView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/ui/Map/Item/KLMapNpcIcon/KLMapNpcIconItemKml'
  7. KLMapNpcIconItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLMapNpcIconItemView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLMapNpcIconItemView.content)
  11. end
  12. return KLMapNpcIconItemView