Skip to content

Commit

Permalink
cleaned up ComparisonValuePair.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
caesuric committed Jun 1, 2023
1 parent bacd8ce commit 4dbd58c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MountainGoap/ComparisonValuePair.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ namespace MountainGoap {
/// </summary>
public class ComparisonValuePair {
/// <summary>
/// Value to be compared against.
/// Gets or sets the value to be compared against.
/// </summary>
public object? Value = null;
public object? Value { get; set; } = null;

/// <summary>
/// Operator to be used for comparison.
/// Gets or sets the operator to be used for comparison.
/// </summary>
public ComparisonOperator Operator = ComparisonOperator.Undefined;
public ComparisonOperator Operator { get; set; } = ComparisonOperator.Undefined;
}
}

0 comments on commit 4dbd58c

Please sign in to comment.