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

18 lines
483 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;
2018-11-04 12:15:02 +00:00
using osu.Framework.Platform;
2018-10-16 09:02:47 +00:00
namespace osu.Game.Tournament.Tests
{
2019-07-29 22:23:25 +00:00
public class TestSceneTournamentSceneManager : TournamentTestScene
2018-10-16 09:02:47 +00:00
{
[BackgroundDependencyLoader]
2018-11-04 12:15:02 +00:00
private void load(Storage storage)
2018-10-16 09:02:47 +00:00
{
Add(new TournamentSceneManager());
2018-10-16 09:02:47 +00:00
}
}
}