Implement IEquatable<T> in Coordinates

This commit is contained in:
Oliver Booth 2022-11-29 18:46:42 +00:00
parent c6ca753381
commit ff088a9870
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
namespace VpSharp; namespace VpSharp;
/// <summary> /// <summary>
/// Represents a set of coordinates. /// Represents a set of coordinates.
/// </summary> /// </summary>
public readonly partial struct Coordinates public readonly partial struct Coordinates : IEquatable<Coordinates>
{ {
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="Coordinates" /> struct. /// Initializes a new instance of the <see cref="Coordinates" /> struct.