blob: 9466783b8ef30d307bf61e462ac2d797866e6083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class Process_PtcG2C_AllGiftIBItemNtf
{
public static void Process(PtcG2C_AllGiftIBItemNtf roPtc)
{
bool flag = roPtc.Data.gift != null;
if (flag)
{
DlgBase<GiftClaimDlg, GiftClaimBehaviour>.singleton.HanderGift(roPtc.Data.gift);
}
}
}
}
|