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

namespace XMainClient
{
	internal class Process_RpcC2G_SmeltItem
	{
		public static void OnReply(SmeltItemArg oArg, SmeltItemRes oRes)
		{
			XSmeltDocument.Doc.OnSmeltBack(oRes);
		}

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