16 lines
489 B
Plaintext
16 lines
489 B
Plaintext
|
LuaHandleMillionPowerInfoRsp = {}
|
||
|
|
||
|
function LuaHandleMillionPowerInfoRsp.HandlePacket(mem)
|
||
|
require "LuaDistributesMillionPowerInfoRsp"
|
||
|
local packet = LuaDistributesMillionPowerInfoRsp.ExtraPacket(mem)
|
||
|
--print(packet)
|
||
|
|
||
|
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingMillionPowerPage")
|
||
|
if consumeActPanel ~= nil then
|
||
|
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingMillionPowerPage.MarketingActRetDel", packet)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
|