17 lines
461 B
Plaintext
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
|
||
|
|
||
|
|