Files
osukey/osu.Game.Tournament.Tests/TestSceneTournamentSceneManager.cs
2022-05-29 18:31:23 +09:00

17 lines
435 B
C#

// 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;
namespace osu.Game.Misskey.Tests
{
public class TestSceneTournamentSceneManager : TournamentTestScene
{
[BackgroundDependencyLoader]
private void load()
{
Add(new TournamentSceneManager());
}
}
}