blob: a5a85023d9a6851f667e426ed0164059a2e2e2d6 (
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_BuyExtraSkillEmblemSlot
{
public static void OnReply(BuyExtraSkillEmblemSlotArg oArg, BuyExtraSkillEmblemSlotRes oRes)
{
XEmblemDocument specificDocument = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
specificDocument.OnEmbleSlottingBack(oRes);
}
public static void OnTimeout(BuyExtraSkillEmblemSlotArg oArg)
{
}
}
}
|