blob: 8609d1ebca0bd451a6d41a2e70a4370cc5fcc6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
}
}
}
|