PGRData/Script/matrix/xui/xuibiancatheatre/XUiBiancaTheatreUnlockTips.lua

21 lines
681 B
Lua
Raw Normal View History

2024-09-01 20:49:41 +00:00
-- 肉鸽玩法二期外循环强化解锁提示
-- ================================================================================
local XUiBiancaTheatreUnlockTips = XLuaUiManager.Register(XLuaUi, "UiBiancaTheatreUnlockTips")
function XUiBiancaTheatreUnlockTips:OnAwake()
self:AddClickListener()
end
function XUiBiancaTheatreUnlockTips:OnStart(callback)
self.CallBack = callback
end
function XUiBiancaTheatreUnlockTips:AddClickListener()
self:RegisterClickEvent(self.BtnClose, function ()
XDataCenter.BiancaTheatreManager.SetStrengthenUnlockTipsCache()
self:Close()
if self.CallBack then
self.CallBack()
end
end)
end