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

namespace XMainClient
{
	internal class Process_PtcM2C_CrossGvgStateNtf
	{
		public static void Process(PtcM2C_CrossGvgStateNtf roPtc)
		{
			XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
			specificDocument.SynCrossGVGTimeState(roPtc.Data.state);
		}
	}
}