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

namespace XMainClient
{
	internal class Process_PtcG2C_AbsPartyNtf
	{
		public static void Process(PtcG2C_AbsPartyNtf roPtc)
		{
			XAbyssPartyDocument specificDocument = XDocuments.GetSpecificDocument<XAbyssPartyDocument>(XAbyssPartyDocument.uuID);
			specificDocument.SetAbyssIndex(roPtc.Data.aby);
		}
	}
}