Files
JJBB/Assets/Project/Script/LuaScripts/NetWork/Lua/Handle/LuaHandleHappyGoldenInfoRsp.txt
2024-08-23 15:49:34 +08:00

16 lines
514 B
Plaintext

LuaHandleHappyGoldenInfoRsp = {}
function LuaHandleHappyGoldenInfoRsp.HandlePacket(mem)
require "LuaDistributesHappyGoldenInfoRsp"
local packet = LuaDistributesHappyGoldenInfoRsp.ExtraPacket(mem)
print(packet)
require "LuaUtil"
debugex.print_table(packet)
local smathEggPage = CS.LuaUIManager.Instance:GetUIInstance("MarketingSmathEggPage")
if smathEggPage then
smathEggPage:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingSmathEggPage.MarketingSmathEggInfoUpdate", packet)
end
end