16 lines
492 B
Plaintext
16 lines
492 B
Plaintext
|
LuaHandleRetFlashCloudBuyDraw = {}
|
||
|
|
||
|
function LuaHandleRetFlashCloudBuyDraw.HandlePacket(mem)
|
||
|
require "LuaDistributesRetFlashCloudBuyDraw"
|
||
|
local packet = LuaDistributesRetFlashCloudBuyDraw.ExtraPacket(mem)
|
||
|
--print(packet)
|
||
|
|
||
|
|
||
|
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingCloudShoppingPage")
|
||
|
if consumeActPanel ~= nil then
|
||
|
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingCloudShoppingPage.BuyDrawClickRet", packet)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|