blob: 555e3984face3621633c29f2d062949c9e72c72a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
internal class Process_PtcG2C_NotifyAccountData
{
public static void Process(PtcG2C_NotifyAccountData roPtc)
{
XSingleton<XDebug>.singleton.AddLog("Receive PtcG2C_NotifyAccountData", null, null, null, null, null, XDebugColor.XDebug_None);
XSingleton<XAttributeMgr>.singleton.ProcessAccountData(roPtc.Data);
}
}
}
|