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

namespace XMainClient
{
	internal class Process_RpcC2M_GroupChatLeaderAddRole
	{
		public static void OnReply(GroupChatLeaderAddRoleC2S oArg, GroupChatLeaderAddRoleS2C oRes)
		{
			GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
			specificDocument.RecevieZMLeaderAddRole(oArg, oRes);
		}

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