1234567891011121314151617181920 |
- ---@class KLHookPointMonsterItemView:UIKmlLuaViewBase
- ---@field Bg UIKmlLuaControl
- ---@field headBG UIKmlLuaControl
- ---@field imgHead UIKmlLuaControl
- ---@field txtName UIKmlLuaControl
- ---@field txtLevel UIKmlLuaControl
- ---@field txtExp UIKmlLuaControl
- ---@field btnGo UIKmlLuaControl
- ---@field imgArrow UIKmlLuaControl
- local KLHookPointMonsterItemView = {}
- setmetatable(KLHookPointMonsterItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Hook/Item/KLHookPointMonster/KLHookPointMonsterItemKml'
- KLHookPointMonsterItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLHookPointMonsterItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLHookPointMonsterItemView.content)
- end
- return KLHookPointMonsterItemView
|