1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

add ToString() override to Beatmap class

This commit is contained in:
Unknown 2019-08-11 16:41:56 +02:00
parent 126fd4d24b
commit cc4ee2df05

View File

@ -60,5 +60,7 @@ namespace osu.Game.Beatmaps
public class Beatmap : Beatmap<HitObject>
{
public new Beatmap Clone() => (Beatmap)base.Clone();
public override string ToString() => BeatmapInfo?.ToString();
}
}