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:
parent
e404a0bc20
commit
e7508cbd5e
@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user