osu/osu.Game.Tournament.Tests/TestSceneTournamentSceneMan...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
449 B
C#
Raw Normal View History

2019-03-04 04:24:19 +00: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.
2018-10-16 09:02:47 +00:00
using osu.Framework.Allocation;
namespace osu.Game.Tournament.Tests
{
2019-07-29 22:23:25 +00:00
public partial class TestSceneTournamentSceneManager : TournamentTestScene
2018-10-16 09:02:47 +00:00
{
[BackgroundDependencyLoader]
2022-01-15 00:06:39 +00:00
private void load()
2018-10-16 09:02:47 +00:00
{
Add(new TournamentSceneManager());
2018-10-16 09:02:47 +00:00
}
}
}