12345678910111213141516171819 |
- ---@class KLQuintonInvasionPanelView:UIKmlLuaViewBase
- ---@field enterTimeDes UIKmlLuaControl
- ---@field enterLevel UIKmlLuaControl
- ---@field activity_des UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field rewardBtn UIKmlLuaControl
- ---@field enterBtn UIKmlLuaControl
- ---@field shopBtn UIKmlLuaControl
- local KLQuintonInvasionPanelView = {}
- setmetatable(KLQuintonInvasionPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLQuintonInvasion/KLQuintonInvasionPanelKml'
- KLQuintonInvasionPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLQuintonInvasionPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLQuintonInvasionPanelView.content)
- end
- return KLQuintonInvasionPanelView
|