123456789101112131415 |
- ---@class KLMapMonsterPointItemView:UIKmlLuaViewBase
- ---@field Icon UIKmlLuaControl
- ---@field Name UIKmlLuaControl
- ---@field Lv UIKmlLuaControl
- local KLMapMonsterPointItemView = {}
- setmetatable(KLMapMonsterPointItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Item/KLMapMonsterPoint/KLMapMonsterPointItemKml'
- KLMapMonsterPointItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMapMonsterPointItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMapMonsterPointItemView.content)
- end
- return KLMapMonsterPointItemView
|