2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-03-04 13:24:19 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-04 07:12:07 +09:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Tournament.Screens.Showcase;
|
|
|
|
|
|
2019-06-18 15:28:36 +09:00
|
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
2018-11-04 07:12:07 +09:00
|
|
|
|
{
|
2023-07-24 18:22:32 +09:00
|
|
|
|
public partial class TestSceneShowcaseScreen : TournamentScreenTestScene
|
2018-11-04 07:12:07 +09:00
|
|
|
|
{
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
Add(new ShowcaseScreen());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|