diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs new file mode 100644 index 00000000..0f58eab9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PhotographEffect
+ {
+ public static void OnReply(PhotographEffectArg oArg, PhotographEffect oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XScreenShotShareDocument specificDocument = XDocuments.GetSpecificDocument<XScreenShotShareDocument>(XScreenShotShareDocument.uuID);
+ specificDocument.OnGetPhotoGraphEffect(oRes);
+ }
+ }
+
+ public static void OnTimeout(PhotographEffectArg oArg)
+ {
+ }
+ }
+}
|