blob: 2ea58cfaf2efaa8dc9d27197297080b0d8660941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using KKSG;
namespace XMainClient
{
internal class Process_RpcC2G_DoodadItemAllSkillReq
{
public static void OnReply(EmptyData oArg, DoodadItemAllSkill oRes)
{
bool flag = XRaceDocument.Doc.RaceHandler != null;
if (flag)
{
XRaceDocument.Doc.RaceHandler.RefreshDoodad(oRes);
}
}
public static void OnTimeout(EmptyData oArg)
{
}
}
}
|