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

namespace XMainClient
{
	internal class Process_PtcG2C_PayAllInfoNtf
	{
		public static void Process(PtcG2C_PayAllInfoNtf roPtc)
		{
			XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
			specificDocument.PayAllInfoNtf(roPtc.Data);
			XWelfareDocument specificDocument2 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
			specificDocument2.PayAllInfoNtf(roPtc.Data);
		}
	}
}