1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 14:23:14 +08:00

Fix CI issues

This commit is contained in:
Dean Herbert 2018-12-22 15:55:10 +09:00
parent e404a0bc20
commit e7508cbd5e
2 changed files with 7 additions and 5 deletions

View File

@ -10,6 +10,9 @@ namespace osu.Game.Screens.Ranking.Types
{ {
public class ScoreOverviewPageInfo : IResultPageInfo public class ScoreOverviewPageInfo : IResultPageInfo
{ {
public FontAwesome Icon => FontAwesome.fa_asterisk;
public string Name => "Overview";
private readonly ScoreInfo score; private readonly ScoreInfo score;
private readonly WorkingBeatmap beatmap; private readonly WorkingBeatmap beatmap;
@ -19,10 +22,9 @@ namespace osu.Game.Screens.Ranking.Types
this.beatmap = beatmap; this.beatmap = beatmap;
} }
public FontAwesome Icon => FontAwesome.fa_asterisk; public ResultsPage CreatePage()
{
public string Name => "Overview"; return new ScoreResultsPage(score, beatmap);
}
public ResultsPage CreatePage() => new ScoreResultsPage(score, beatmap);
} }
} }