123456789101112131415161718192021222324252627282930313233343536 |
- ---@class KLWolfSoulFortressTaskPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field btnHelp UIKmlLuaControl
- ---@field timerTitle UIKmlLuaControl
- ---@field timeText UIKmlLuaControl
- ---@field textRoot UIKmlLuaControl
- ---@field text_1 UIKmlLuaControl
- ---@field text_2 UIKmlLuaControl
- ---@field textSummonCount UIKmlLuaControl
- ---@field btnSummon UIKmlLuaControl
- ---@field textRoot_2 UIKmlLuaControl
- ---@field textKey_1 UIKmlLuaControl
- ---@field textWolfHp UIKmlLuaControl
- ---@field textKey_2 UIKmlLuaControl
- ---@field textScore UIKmlLuaControl
- ---@field textKey_3 UIKmlLuaControl
- ---@field textRank UIKmlLuaControl
- ---@field textKey_4 UIKmlLuaControl
- ---@field textFightCount UIKmlLuaControl
- ---@field btnExit UIKmlLuaControl
- ---@field timeText_2 UIKmlLuaControl
- local KLWolfSoulFortressTaskPanelView = {}
- setmetatable(KLWolfSoulFortressTaskPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortressTask/KLWolfSoulFortressTaskPanelKml'
- KLWolfSoulFortressTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLWolfSoulFortressTaskPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLWolfSoulFortressTaskPanelView.content)
- end
- return KLWolfSoulFortressTaskPanelView
|