KLUIBuffInfoPanelView.lua 540 B

1234567891011121314
  1. ---@class KLUIBuffInfoPanelView:UIKmlLuaViewBase
  2. ---@field buffBg UIKmlLuaControl
  3. ---@field des UIKmlLuaControl
  4. local KLUIBuffInfoPanelView = {}
  5. setmetatable(KLUIBuffInfoPanelView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/ui/MainUI/Panel/KLUIBuffInfo/KLUIBuffInfoPanelKml'
  7. KLUIBuffInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLUIBuffInfoPanelView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLUIBuffInfoPanelView.content)
  11. end
  12. return KLUIBuffInfoPanelView