diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs new file mode 100644 index 00000000..2ea58cfa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs @@ -0,0 +1,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)
+ {
+ }
+ }
+}
|