mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Score -> ScoreInfo
This commit is contained in:
@ -16,16 +16,16 @@ namespace osu.Game.Screens.Ranking
|
||||
{
|
||||
public class ResultsPage : Container
|
||||
{
|
||||
protected readonly Score Score;
|
||||
protected readonly ScoreInfo ScoreInfo;
|
||||
protected readonly WorkingBeatmap Beatmap;
|
||||
private CircularContainer content;
|
||||
private Box fill;
|
||||
|
||||
protected override Container<Drawable> Content => content;
|
||||
|
||||
public ResultsPage(Score score, WorkingBeatmap beatmap)
|
||||
public ResultsPage(ScoreInfo scoreInfo, WorkingBeatmap beatmap)
|
||||
{
|
||||
Score = score;
|
||||
ScoreInfo = scoreInfo;
|
||||
Beatmap = beatmap;
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
}
|
||||
|
Reference in New Issue
Block a user