KLMapHookPointsPanelView.lua 633 B

12345678910111213141516
  1. ---@class KLMapHookPointsPanelView:UIKmlLuaViewBase
  2. ---@field btnBG UIKmlLuaControl
  3. ---@field Bg UIKmlLuaControl
  4. ---@field scroll UIKmlLuaControl
  5. ---@field layout4 UIKmlLuaControl
  6. local KLMapHookPointsPanelView = {}
  7. setmetatable(KLMapHookPointsPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/Hook/Panel/KLMapHookPoints/KLMapHookPointsPanelKml'
  9. KLMapHookPointsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLMapHookPointsPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLMapHookPointsPanelView.content)
  13. end
  14. return KLMapHookPointsPanelView