1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ---@class KLUIEfficiencyPanelView:UIKmlLuaViewBase
- ---@field BG UIKmlLuaControl
- ---@field UI UIKmlLuaControl
- ---@field TogList UIKmlLuaControl
- ---@field MultiplierToggle UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field PickupToggle UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field ExplosionRateToggle UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field LevelText UIKmlLuaControl
- ---@field LvLimit UIKmlLuaControl
- ---@field reward UIKmlLuaControl
- ---@field HighImageBtn UIKmlLuaControl
- ---@field togglegroup UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field MultiplierPanel UIKmlLuaControl
- ---@field list UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field ButtonOpenServer UIKmlLuaControl
- ---@field ButtonGift UIKmlLuaControl
- ---@field ButtonBuy UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field model6 UIKmlLuaControl
- ---@field bg2 UIKmlLuaControl
- ---@field ButtonActive UIKmlLuaControl
- ---@field PickupPanel UIKmlLuaControl
- ---@field img14 UIKmlLuaControl
- ---@field img7 UIKmlLuaControl
- ---@field Pickup_Button UIKmlLuaControl
- ---@field ExplosionRatePanel UIKmlLuaControl
- ---@field img18 UIKmlLuaControl
- ---@field ExplosionRate_Button UIKmlLuaControl
- ---@field TextRate UIKmlLuaControl
- ---@field MiracleCoinsPanel UIKmlLuaControl
- ---@field layout22 UIKmlLuaControl
- ---@field img23 UIKmlLuaControl
- ---@field DailyCardButton UIKmlLuaControl
- ---@field img27 UIKmlLuaControl
- ---@field MiracleCoinsWeek UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- local KLUIEfficiencyPanelView = {}
- setmetatable(KLUIEfficiencyPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Efficiency/Panel/KLUIEfficiency/KLUIEfficiencyPanelKml'
- KLUIEfficiencyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIEfficiencyPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIEfficiencyPanelView.content)
- end
- return KLUIEfficiencyPanelView
|