summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs
blob: 2e21395862cd88fb5a3772c81e0562360884820a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace XMainClient
{
	internal class Process_PtcM2C_NotifyIdipMessageMs
	{
		public static void Process(PtcM2C_NotifyIdipMessageMs roPtc)
		{
			XIDIPDocument specificDocument = XDocuments.GetSpecificDocument<XIDIPDocument>(XIDIPDocument.uuID);
			specificDocument.DealWithIDIPMessage(roPtc.Data);
		}
	}
}