blob: f51fd83d8ab352a44e0b8de0f1d4ff41968efb32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using XMainClient.UI;
using XUtliPoolLib;
namespace XMainClient
{
internal class Process_PtcM2C_LeagueBattleMatchTimeoutNtf
{
public static void Process(PtcM2C_LeagueBattleMatchTimeoutNtf roPtc)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("MATCH_TIME_OUT_LEAGUE"), "fece00");
XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
specificDocument.SetTeamMatchState(false);
}
}
}
|