summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs
blob: 980cc9becf2d0e38bf30def0b7f56af84a4f91e4 (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_QueryIBItem
	{
		public static void OnReply(IBQueryItemReq oArg, IBQueryItemRes oRes)
		{
			bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
			if (flag)
			{
				XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
				specificDocument.RespItems(oArg, oRes);
			}
		}

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