KLMonthCardActiveEffectPanelView.lua 629 B

12345678910111213
  1. ---@class KLMonthCardActiveEffectPanelView:UIKmlLuaViewBase
  2. ---@field MonthCard_ActiveIcon UIKmlLuaControl
  3. local KLMonthCardActiveEffectPanelView = {}
  4. setmetatable(KLMonthCardActiveEffectPanelView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/outui/MonthCard/Panel/KLMonthCardActiveEffect/KLMonthCardActiveEffectPanelKml'
  6. KLMonthCardActiveEffectPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLMonthCardActiveEffectPanelView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLMonthCardActiveEffectPanelView.content)
  10. end
  11. return KLMonthCardActiveEffectPanelView