From c4bd9d8c587bd1401f0fb2f60c34a4964d7afe20 Mon Sep 17 00:00:00 2001
From: asmrobot <asmrobot@hotmail.com>
Date: Sun, 27 Oct 2019 16:02:50 +0000
Subject: [PATCH] o
---
src/RichCreator.Utility/Structs/ZTLine.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/RichCreator.Utility/Structs/ZTLine.cs b/src/RichCreator.Utility/Structs/ZTLine.cs
index 876f94a..5dfe065 100644
--- a/src/RichCreator.Utility/Structs/ZTLine.cs
+++ b/src/RichCreator.Utility/Structs/ZTLine.cs
@@ -19,15 +19,15 @@
this.Y = y;
this.Length = length;
}
- public Int32 X;
+ public Int32 X { get; set; }
- public Int32 Y;
+ public Int32 Y { get; set; }
- public Int32 Length;
+ public Int32 Length { get; set; }
public static bool operator ==(ZTLine a, ZTLine b)
{
- if (a.X == b.X && a.Y == b.Y && a.Length == b.Length)
+ if ((a.X == b.X && a.Y == b.Y && a.Length == b.Length))
{
return true;
}
--
Gitblit v1.9.3