123456789101112131415 |
- ---@class KLCardShapeArchangelPanelView:UIKmlLuaViewBase
- ---@field img_bg UIKmlLuaControl
- ---@field btn_go UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- local KLCardShapeArchangelPanelView = {}
- setmetatable(KLCardShapeArchangelPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/CardShapeShift/Panel/KLCardShapeArchangel/KLCardShapeArchangelPanelKml'
- KLCardShapeArchangelPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLCardShapeArchangelPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLCardShapeArchangelPanelView.content)
- end
- return KLCardShapeArchangelPanelView
|