summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs
blob: 80c16dbec18fe41acffc7a1a3dc675c314d2f2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace XMainClient
{
	internal class Process_PtcM2C_IBGiftIconNtf
	{
		public static void Process(PtcM2C_IBGiftIconNtf roPtc)
		{
			XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
			bool flag = specificDocument != null;
			if (flag)
			{
				specificDocument.presentStatus = roPtc.Data.status;
			}
		}
	}
}