1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 17:07:38 +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 FontAwesome Icon => FontAwesome.fa_asterisk;
public string Name => "Overview";
private readonly ScoreInfo score;
private readonly WorkingBeatmap beatmap;
@ -19,10 +22,9 @@ namespace osu.Game.Screens.Ranking.Types
this.beatmap = beatmap;
}
public FontAwesome Icon => FontAwesome.fa_asterisk;
public string Name => "Overview";
public ResultsPage CreatePage() => new ScoreResultsPage(score, beatmap);
public ResultsPage CreatePage()
{
return new ScoreResultsPage(score, beatmap);
}
}
}