From 4dbd58cb14bfd88fdbbe5e01d12fd3b2f245fa41 Mon Sep 17 00:00:00 2001 From: caesuric Date: Thu, 1 Jun 2023 16:40:04 -0400 Subject: [PATCH] cleaned up ComparisonValuePair.cs --- MountainGoap/ComparisonValuePair.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MountainGoap/ComparisonValuePair.cs b/MountainGoap/ComparisonValuePair.cs index 9e6cb2d..98d4ee7 100644 --- a/MountainGoap/ComparisonValuePair.cs +++ b/MountainGoap/ComparisonValuePair.cs @@ -8,13 +8,13 @@ namespace MountainGoap { /// public class ComparisonValuePair { /// - /// Value to be compared against. + /// Gets or sets the value to be compared against. /// - public object? Value = null; + public object? Value { get; set; } = null; /// - /// Operator to be used for comparison. + /// Gets or sets the operator to be used for comparison. /// - public ComparisonOperator Operator = ComparisonOperator.Undefined; + public ComparisonOperator Operator { get; set; } = ComparisonOperator.Undefined; } } \ No newline at end of file