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

namespace XMainClient
{
	internal class Process_RpcC2G_GetTowerActivityTop
	{
		public static void OnReply(GetTowerActivityTopArg oArg, GetTowerActivityTopRes oRes)
		{
			bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
			if (!flag)
			{
				XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
				specificDocument.GetSingleTowerActivityTopRes(oRes);
			}
		}

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