KLEarningsPanelView.lua 469 B

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