12345678910111213 |
- ---@class KLMapTransferAnimPanelPanelView:UIKmlLuaViewBase
- ---@field img_trans_anim UIKmlLuaControl
- local KLMapTransferAnimPanelPanelView = {}
- setmetatable(KLMapTransferAnimPanelPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Panel/KLMapTransferAnimPanel/KLMapTransferAnimPanelPanelKml'
- KLMapTransferAnimPanelPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMapTransferAnimPanelPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLMapTransferAnimPanelPanelView.content)
- end
- return KLMapTransferAnimPanelPanelView
|