From f25f89101a98ad815c0ae2d25e1a8dc35d53a5dd Mon Sep 17 00:00:00 2001
From: asmrobot <asmrobot@hotmail.com>
Date: Tue, 29 Oct 2019 13:55:37 +0000
Subject: [PATCH] format state machine

---
 src/RichCreator.Utility/CV/ChannelCVHelper.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/RichCreator.Utility/CV/ChannelCVHelper.cs b/src/RichCreator.Utility/CV/ChannelCVHelper.cs
index 12086e7..9e2dfad 100644
--- a/src/RichCreator.Utility/CV/ChannelCVHelper.cs
+++ b/src/RichCreator.Utility/CV/ChannelCVHelper.cs
@@ -112,9 +112,9 @@
         /// <param name="confirmButtonPoint"></param>
         /// <param name="gameRect"></param>
         /// <returns></returns>
-        public static bool HasConnectIsVaildWindow(out ZTPoint confirmButtonPoint, ZTRectangle gameRect)
+        public static bool HasConnectIsVaildWindow(out Structs.ZTPoint confirmButtonPoint, ZTRectangle gameRect)
         {
-            confirmButtonPoint = ZTPoint.Empty;
+            confirmButtonPoint = Structs.ZTPoint.Empty;
             ZTRectangle tempRect = ZTRectangle.Empty;
             if (!CVHelper.RectExistsArray(out tempRect, gameRect, DisconnectionWhiteText))
             {
@@ -124,7 +124,7 @@
                 }
             }
 
-            confirmButtonPoint = new ZTPoint(tempRect.GetCenterPoint().X, tempRect.End.Y);
+            confirmButtonPoint = new Structs.ZTPoint(tempRect.GetCenterPoint().X, tempRect.End.Y);
             return true;
         }
     }

--
Gitblit v1.9.3