blob: bc34074470da49abb551dc168b9d851fe265429a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using KKSG;
namespace XMainClient
{
internal class Process_PtcG2C_SkyCityTimeRes
{
public static void Process(PtcG2C_SkyCityTimeRes roPtc)
{
bool flag = roPtc.Data.type == SkyCityTimeType.Waiting;
if (flag)
{
XSkyArenaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaEntranceDocument>(XSkyArenaEntranceDocument.uuID);
specificDocument.SetTime(roPtc.Data.time);
}
}
}
}
|