blob: 567aeb2cc272eb82b86de589110ca24ccaf8f3b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace XMainClient
{
internal class Process_PtcG2C_PkRoleInfoNtf
{
public static void Process(PtcG2C_PkRoleInfoNtf roPtc)
{
XQualifyingDocument specificDocument = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
bool flag = roPtc.Data.pkroleinfo.Count > 0;
if (flag)
{
specificDocument.SetPkRoleInfo(roPtc.Data.pkroleinfo);
}
}
}
}
|