KLCardShapeArchangelPanelView.lua 662 B

123456789101112131415
  1. ---@class KLCardShapeArchangelPanelView:UIKmlLuaViewBase
  2. ---@field img_bg UIKmlLuaControl
  3. ---@field btn_go UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. local KLCardShapeArchangelPanelView = {}
  6. setmetatable(KLCardShapeArchangelPanelView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/outui/CardShapeShift/Panel/KLCardShapeArchangel/KLCardShapeArchangelPanelKml'
  8. KLCardShapeArchangelPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLCardShapeArchangelPanelView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLCardShapeArchangelPanelView.content)
  12. end
  13. return KLCardShapeArchangelPanelView