osu/osu.Game/Screens/Play/SoloResults.cs

25 lines
691 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Game.Scoring;
using osu.Game.Screens.Ranking;
using osu.Game.Screens.Ranking.Types;
namespace osu.Game.Screens.Play
{
public class SoloResults : Results
{
public SoloResults(ScoreInfo score)
: base(score)
{
}
2018-12-22 07:20:29 +00:00
protected override IEnumerable<IResultPageInfo> CreateResultPages() => new IResultPageInfo[]
{
2018-12-22 06:51:00 +00:00
new ScoreOverviewPageInfo(Score, Beatmap),
2018-12-27 06:30:02 +00:00
new LocalLeaderboardPageInfo(Score, Beatmap)
};
}
}