KLUIPrivilegeBonusDetailPanelView.lua 591 B

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