17 lines
498 B
Plaintext
17 lines
498 B
Plaintext
|
LuaHandleGainMillionPowerReq = {}
|
||
|
|
||
|
function LuaHandleGainMillionPowerReq.HandlePacket(mem)
|
||
|
--require "LuaDistributesGainMillionPowerReq"
|
||
|
--local packet = LuaDistributesGainMillionPowerReq.ExtraPacket(mem)
|
||
|
--print(packet)
|
||
|
|
||
|
|
||
|
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingMillionPowerPage")
|
||
|
if consumeActPanel ~= nil then
|
||
|
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingMillionPowerPage.MarketingActRetDel_Get", packet)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
|