Files
JJBB/Assets/Project/Script/LuaScripts/NetWork/Lua/Handle/LuaHandleMazeInfoRsp.txt
2024-08-23 15:49:34 +08:00

16 lines
452 B
Plaintext

LuaHandleMazeInfoRsp = {}
function LuaHandleMazeInfoRsp.HandlePacket(mem)
require "LuaDistributesMazeInfoRsp"
local packet = LuaDistributesMazeInfoRsp.ExtraPacket(mem)
print(packet)
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingMazeSearchPage")
if consumeActPanel ~= nil then
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingMazeSearchPage.MarketingActRetDel", packet)
end
end