blob: 0e68d7c5fc0c5da4557e2a6f26c36f0e9b38e0ae (
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_RpcC2G_ChooseSpecialEffects
{
public static void OnReply(ChooseSpecialEffectsArg oArg, ChooseSpecialEffectsRes oRes)
{
XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
specificDocument.SetActiveSuitEffect(oArg, oRes);
}
public static void OnTimeout(ChooseSpecialEffectsArg oArg)
{
}
}
}
|