Skip to content

Commit

Permalink
Add ToString on PathType for better test output
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 21, 2023
1 parent caa9663 commit 0d85462
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osu.Game/Rulesets/Objects/Types/PathType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,7 @@ public bool Equals(PathType other)

public static bool operator ==(PathType a, PathType b) => a.Equals(b);
public static bool operator !=(PathType a, PathType b) => !a.Equals(b);

public override string ToString() => Description;
}
}

0 comments on commit 0d85462

Please sign in to comment.