1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Add ToString on PathType for better test output

This commit is contained in:
Dean Herbert 2023-11-21 15:31:39 +09:00
parent cc33e12125
commit 4b2d8aa6a6
No known key found for this signature in database

View File

@ -81,5 +81,7 @@ namespace osu.Game.Rulesets.Objects.Types
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;
}
}