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

namespace XMainClient
{
	internal class Process_PtcG2C_InvFightBefEnterSceneNtf
	{
		public static void Process(PtcG2C_InvFightBefEnterSceneNtf roPtc)
		{
			XPKInvitationDocument specificDocument = XDocuments.GetSpecificDocument<XPKInvitationDocument>(XPKInvitationDocument.uuID);
			specificDocument.EnterFightScene(roPtc);
		}
	}
}