KLShapeShiftCardBreakPanelView.lua 564 B

1234567891011
  1. ---@class KLShapeShiftCardBreakPanelView:UIKmlLuaViewBase
  2. local KLShapeShiftCardBreakPanelView = {}
  3. setmetatable(KLShapeShiftCardBreakPanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardBreak/KLShapeShiftCardBreakPanelKml'
  5. KLShapeShiftCardBreakPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLShapeShiftCardBreakPanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLShapeShiftCardBreakPanelView.content)
  9. end
  10. return KLShapeShiftCardBreakPanelView