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

17 lines
461 B
Plaintext

LuaHandleRespQuitCopyConfirm = {}
function LuaHandleRespQuitCopyConfirm.HandlePacket(mem)
require "LuaDistributesRespQuitCopyConfirm"
packet = LuaDistributesRespQuitCopyConfirm.ExtraPacket(mem)
--print(packet)
local uiObj = CS.LuaUIManager.Instance:GetUIInstance("ZiJinTopCopyInfo")
if uiObj == nil then
return --没打开界面不处理
end
uiObj:GetComponent("LuaUIBehaviour"):CallScriptFuncAtPath("ZiJinTopCopyInfo.NewOnPacket", packet)
end