123456789101112131415161718192021222324252627282930313233 |
- ---@class KLRedFortTaskPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field exitBtn UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field textSetout UIKmlLuaControl
- ---@field textSetoutTime UIKmlLuaControl
- ---@field text30 UIKmlLuaControl
- ---@field textTime UIKmlLuaControl
- ---@field textJoin UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- ---@field textJoinCoun UIKmlLuaControl
- ---@field textTarget UIKmlLuaControl
- ---@field textPlayer UIKmlLuaControl
- ---@field text11 UIKmlLuaControl
- ---@field textPlayerCount UIKmlLuaControl
- ---@field textRevive UIKmlLuaControl
- ---@field text15 UIKmlLuaControl
- ---@field textReviveCount UIKmlLuaControl
- ---@field textFightTime UIKmlLuaControl
- local KLRedFortTaskPanelView = {}
- setmetatable(KLRedFortTaskPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLRedFortTask/KLRedFortTaskPanelKml'
- KLRedFortTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRedFortTaskPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRedFortTaskPanelView.content)
- end
- return KLRedFortTaskPanelView
|