1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:07:23 +08:00
osu-lazer/osu.Game.Tournament.Tests/Screens/TestSceneSeedingScreen.cs

27 lines
727 B
C#
Raw Normal View History

2020-03-03 17:12:42 +08:00
// 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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Tournament.Models;
using osu.Game.Tournament.Screens.TeamIntro;
namespace osu.Game.Tournament.Tests.Screens
{
public class TestSceneSeedingScreen : TournamentTestScene
2020-03-03 17:12:42 +08:00
{
[Cached]
private readonly LadderInfo ladder = new LadderInfo();
[BackgroundDependencyLoader]
private void load()
{
2020-03-04 12:26:25 +08:00
Add(new SeedingScreen
2020-03-03 17:12:42 +08:00
{
2020-03-04 12:26:25 +08:00
FillMode = FillMode.Fit,
FillAspectRatio = 16 / 9f
});
}
2020-03-03 17:12:42 +08:00
}
}