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
|
|
|
|
{
|
2018-11-06 05:49:09 +00:00
|
|
|
|
Add(new TournamentSceneManager());
|
2018-10-16 09:02:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|