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

namespace XMainClient
{
	internal class Process_PtcM2C_KickFMAuchor
	{
		public static void Process(PtcM2C_KickFMAuchor roPtc)
		{
			XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
			specificDocument.QuitBigRoom();
			DlgBase<RadioDlg, RadioBehaviour>.singleton.Refresh(false);
		}
	}
}