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

namespace XMainClient
{
	internal class Process_PtcG2C_PetChangeNotfiy
	{
		public static void Process(PtcG2C_PetChangeNotfiy roPtc)
		{
			XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
			specificDocument.OnPetChange(roPtc.Data);
		}
	}
}