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

namespace XMainClient
{
	internal class Process_PtcG2C_HorseFailTipsNtf
	{
		public static void Process(PtcG2C_HorseFailTipsNtf roPtc)
		{
			bool flag = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler != null;
			if (flag)
			{
				DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler.SetWaitEnd();
			}
		}
	}
}