12345678910111213141516 |
- ---@class KLMapHookPointsPanelView:UIKmlLuaViewBase
- ---@field btnBG UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field scroll UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- local KLMapHookPointsPanelView = {}
- setmetatable(KLMapHookPointsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Hook/Panel/KLMapHookPoints/KLMapHookPointsPanelKml'
- KLMapHookPointsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMapHookPointsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMapHookPointsPanelView.content)
- end
- return KLMapHookPointsPanelView
|