summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs
blob: 20cb50cd3324c2d85a9f0ab476645bfaf3348def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using KKSG;

namespace XMainClient
{
	internal class Process_RpcC2G_DEProgressReq
	{
		public static void OnReply(DEProgressArg oArg, DEProgressRes oRes)
		{
			XDragonCrusadeDocument specificDocument = XDocuments.GetSpecificDocument<XDragonCrusadeDocument>(XDragonCrusadeDocument.uuID);
			specificDocument.OnDEProgressReq(oRes);
			XActivityDocument.Doc.OnGetDayCount();
		}

		public static void OnTimeout(DEProgressArg oArg)
		{
		}
	}
}