17 lines
526 B
Plaintext
17 lines
526 B
Plaintext
LuaHandleFlashCloudBuyInfoRsp = {}
|
|
|
|
function LuaHandleFlashCloudBuyInfoRsp.HandlePacket(mem)
|
|
require "LuaDistributesFlashCloudBuyInfoRsp"
|
|
local packet = LuaDistributesFlashCloudBuyInfoRsp.ExtraPacket(mem)
|
|
--print(packet)
|
|
|
|
|
|
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingCloudShoppingPage")
|
|
print(consumeActPanel == nil)
|
|
if consumeActPanel ~= nil then
|
|
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingCloudShoppingPage.MarketingActRetDel", packet)
|
|
end
|
|
end
|
|
|
|
|