KLMapMonsterPointItemView.lua 601 B

123456789101112131415
  1. ---@class KLMapMonsterPointItemView:UIKmlLuaViewBase
  2. ---@field Icon UIKmlLuaControl
  3. ---@field Name UIKmlLuaControl
  4. ---@field Lv UIKmlLuaControl
  5. local KLMapMonsterPointItemView = {}
  6. setmetatable(KLMapMonsterPointItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/Map/Item/KLMapMonsterPoint/KLMapMonsterPointItemKml'
  8. KLMapMonsterPointItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLMapMonsterPointItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLMapMonsterPointItemView.content)
  12. end
  13. return KLMapMonsterPointItemView