1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00
osu-lazer/osu.Game.Tournament.Tests/TestSceneTournamentSceneManager.cs

19 lines
505 B
C#
Raw Permalink Normal View History

2019-03-04 13:24:19 +09: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 18:02:47 +09:00
using osu.Framework.Allocation;
2018-11-04 21:15:02 +09:00
using osu.Framework.Platform;
2018-11-06 17:59:01 +09:00
using osu.Game.Tests.Visual;
2018-10-16 18:02:47 +09:00
namespace osu.Game.Tournament.Tests
{
2019-06-18 15:28:36 +09:00
public class TestSceneTournamentSceneManager : OsuTestScene
2018-10-16 18:02:47 +09:00
{
[BackgroundDependencyLoader]
2018-11-04 21:15:02 +09:00
private void load(Storage storage)
2018-10-16 18:02:47 +09:00
{
Add(new TournamentSceneManager());
2018-10-16 18:02:47 +09:00
}
}
}