We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ToString
PathType
1 parent cc33e12 commit 4b2d8aaCopy full SHA for 4b2d8aa
osu.Game/Rulesets/Objects/Types/PathType.cs
@@ -81,5 +81,7 @@ public bool Equals(PathType other)
81
82
public static bool operator ==(PathType a, PathType b) => a.Equals(b);
83
public static bool operator !=(PathType a, PathType b) => !a.Equals(b);
84
+
85
+ public override string ToString() => Description;
86
}
87
0 commit comments