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

namespace XMainClient
{
	internal class Process_PtcM2C_ModifyGuildNameNtf
	{
		public static void Process(PtcM2C_ModifyGuildNameNtf roPtc)
		{
			XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
			specificDocument.NotifyGuildNewName(roPtc.Data.name);
		}
	}
}