diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs new file mode 100644 index 00000000..9466783b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs @@ -0,0 +1,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);
+ }
+ }
+ }
+}
|