123456789101112131415161718192021222324 |
- ---@class KLWolfSoulFortressSummonPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field btnClose UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field textGuildMoney UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field textSummonCount UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- ---@field textTime UIKmlLuaControl
- ---@field summonList UIKmlLuaControl
- ---@field summonDataList UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- local KLWolfSoulFortressSummonPanelView = {}
- setmetatable(KLWolfSoulFortressSummonPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortressSummon/KLWolfSoulFortressSummonPanelKml'
- KLWolfSoulFortressSummonPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLWolfSoulFortressSummonPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLWolfSoulFortressSummonPanelView.content)
- end
- return KLWolfSoulFortressSummonPanelView
|