mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 20:22:55 +08:00
add ToString() override to Beatmap class
This commit is contained in:
parent
126fd4d24b
commit
cc4ee2df05
@ -60,5 +60,7 @@ namespace osu.Game.Beatmaps
|
|||||||
public class Beatmap : Beatmap<HitObject>
|
public class Beatmap : Beatmap<HitObject>
|
||||||
{
|
{
|
||||||
public new Beatmap Clone() => (Beatmap)base.Clone();
|
public new Beatmap Clone() => (Beatmap)base.Clone();
|
||||||
|
|
||||||
|
public override string ToString() => BeatmapInfo?.ToString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user