12345678910111213141516 |
- ---@class KLQuintonInvasionRewardPanelView:UIKmlLuaViewBase
- ---@field model_item UIKmlLuaControl
- ---@field model UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- local KLQuintonInvasionRewardPanelView = {}
- setmetatable(KLQuintonInvasionRewardPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLQuintonInvasionReward/KLQuintonInvasionRewardPanelKml'
- KLQuintonInvasionRewardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLQuintonInvasionRewardPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLQuintonInvasionRewardPanelView.content)
- end
- return KLQuintonInvasionRewardPanelView
|