Move ScoreInfo string representation to extension method

This commit is contained in:
Bartłomiej Dach
2021-11-09 12:37:12 +01:00
parent 4aee2844f6
commit eba3cfc96e
2 changed files with 16 additions and 1 deletions

View File

@ -225,7 +225,7 @@ namespace osu.Game.Scoring
return clone;
}
public override string ToString() => $"{User} playing {BeatmapInfo}";
public override string ToString() => this.GetDisplayTitle();
public bool Equals(ScoreInfo other)
{