blob: 79086f95aac80d8bae81e755eba721cff42c1e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XMainClient
{
internal class Process_PtcM2C_CustomBattleGMNotify
{
public static void Process(PtcM2C_CustomBattleGMNotify roPtc)
{
XCustomBattleDocument specificDocument = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
specificDocument.IsCreateGM = roPtc.Data.isgmcreate;
}
}
}
|