123456789101112131415161718192021222324 |
- ---@class KLRedFortSettlementPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field text12 UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field img5 UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field btnOK UIKmlLuaControl
- ---@field textKillScore UIKmlLuaControl
- ---@field textRank UIKmlLuaControl
- ---@field text13 UIKmlLuaControl
- ---@field text14 UIKmlLuaControl
- local KLRedFortSettlementPanelView = {}
- setmetatable(KLRedFortSettlementPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLRedFortSettlement/KLRedFortSettlementPanelKml'
- KLRedFortSettlementPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRedFortSettlementPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRedFortSettlementPanelView.content)
- end
- return KLRedFortSettlementPanelView
|