osu/osu.Game.Tournament.Tests/TestCaseSceneManager.cs

20 lines
529 B
C#
Raw Normal View History

2018-10-16 09:02:47 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
2018-11-04 12:15:02 +00:00
using osu.Framework.Platform;
2018-11-06 08:59:01 +00:00
using osu.Game.Tests.Visual;
using osu.Game.Tournament.Screens;
2018-10-16 09:02:47 +00:00
namespace osu.Game.Tournament.Tests
{
2018-11-06 08:59:01 +00:00
public class TestCaseSceneManager : OsuTestCase
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
}
}
}