Clean-ups and renames

This commit is contained in:
Dean Herbert
2018-12-22 15:51:00 +09:00
parent daa6292e08
commit e404a0bc20
8 changed files with 24 additions and 22 deletions

View File

@ -15,10 +15,10 @@ namespace osu.Game.Screens.Play
{
}
protected override IEnumerable<IResultType> CreateResultTypes() => new IResultType[]
protected override IEnumerable<IResultPageInfo> CreateResultTypes() => new IResultPageInfo[]
{
new ScoreResultType(Score, Beatmap),
new RankingResultType(Score, Beatmap)
new ScoreOverviewPageInfo(Score, Beatmap),
new BeatmapLeaderboardPageInfo(Score, Beatmap)
};
}
}