blob: 4257eeeb4bb1f75fc170dc711902ebd50266618d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XMainClient
{
internal class Process_PtcG2C_SkyCityTeamRes
{
public static void Process(PtcG2C_SkyCityTeamRes roPtc)
{
XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
specificDocument.SetBattleTeamInfo(roPtc);
}
}
}
|