12345678910111213141516 |
- ---@class KLMapHookPointItemView:UIKmlLuaViewBase
- ---@field btnPos UIKmlLuaControl
- ---@field txtIndex UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field txtPos UIKmlLuaControl
- local KLMapHookPointItemView = {}
- setmetatable(KLMapHookPointItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Hook/Item/KLMapHookPoint/KLMapHookPointItemKml'
- KLMapHookPointItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMapHookPointItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMapHookPointItemView.content)
- end
- return KLMapHookPointItemView
|