KLTradeBagPanelView.lua 461 B

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