Initial re-layout of score table

This commit is contained in:
smoogipoo
2019-03-26 10:21:34 +09:00
parent 6a9f005ed4
commit f4aeb390ef
2 changed files with 222 additions and 3 deletions

View File

@ -1,18 +1,17 @@
// 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;
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.MathUtils;
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Overlays.BeatmapSet.Scores;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
@ -24,6 +23,15 @@ namespace osu.Game.Tests.Visual.SongSelect
[Description("in BeatmapOverlay")]
public class TestCaseBeatmapScoresContainer : OsuTestCase
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ScoresContainer),
typeof(ScoreTable),
typeof(ScoreTableRow),
typeof(ScoreTableHeader),
typeof(ScoreTableScore)
};
private readonly Box background;
public TestCaseBeatmapScoresContainer()