2019-09-22 02:10:04 +09: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;
|
2021-01-11 14:44:07 +09:00
|
|
|
|
using osu.Game.Tournament.Screens.Setup;
|
2019-09-22 02:10:04 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
|
|
|
|
{
|
2023-07-24 18:22:32 +09:00
|
|
|
|
public partial class TestSceneSetupScreen : TournamentScreenTestScene
|
2019-09-22 02:10:04 +09:00
|
|
|
|
{
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
Add(new SetupScreen());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|