KLWolfSoulFortressPanelView.lua 602 B

1234567891011121314
  1. ---@class KLWolfSoulFortressPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field textTime UIKmlLuaControl
  4. local KLWolfSoulFortressPanelView = {}
  5. setmetatable(KLWolfSoulFortressPanelView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortress/KLWolfSoulFortressPanelKml'
  7. KLWolfSoulFortressPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLWolfSoulFortressPanelView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLWolfSoulFortressPanelView.content)
  11. end
  12. return KLWolfSoulFortressPanelView