summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs
new file mode 100644
index 00000000..8609d1eb
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs
@@ -0,0 +1,16 @@
+using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ShareRandomGiftNtf
+ {
+ public static void Process(PtcG2C_ShareRandomGiftNtf roPtc)
+ {
+ RpcC2G_GetPlatformShareChest rpcC2G_GetPlatformShareChest = new RpcC2G_GetPlatformShareChest();
+ rpcC2G_GetPlatformShareChest.oArg.box_id = roPtc.Data.id;
+ rpcC2G_GetPlatformShareChest.oArg.open_key = XSingleton<XClientNetwork>.singleton.OpenKey;
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2G_GetPlatformShareChest);
+ }
+ }
+}