12345678910111213141516171819202122232425262728293031323334353637 |
- ---@class KLBloodCopyTaskProgressPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field desBtn UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field prepareRoot UIKmlLuaControl
- ---@field openActivityBtn UIKmlLuaControl
- ---@field openDes UIKmlLuaControl
- ---@field openDesTxt UIKmlLuaControl
- ---@field openTime UIKmlLuaControl
- ---@field fightRoot UIKmlLuaControl
- ---@field waveNumber UIKmlLuaControl
- ---@field taskName UIKmlLuaControl
- ---@field taskCount UIKmlLuaControl
- ---@field rewardRoot UIKmlLuaControl
- ---@field rewardList1 UIKmlLuaControl
- ---@field layout67 UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field endRoot UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- ---@field text7 UIKmlLuaControl
- ---@field exitBtn UIKmlLuaControl
- ---@field endTime UIKmlLuaControl
- ---@field noPickUpWeaponTip UIKmlLuaControl
- local KLBloodCopyTaskProgressPanelView = {}
- setmetatable(KLBloodCopyTaskProgressPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLBloodCopyTaskProgress/KLBloodCopyTaskProgressPanelKml'
- KLBloodCopyTaskProgressPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBloodCopyTaskProgressPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLBloodCopyTaskProgressPanelView.content)
- end
- return KLBloodCopyTaskProgressPanelView
|