2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-03-04 13:24:19 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-10-16 18:02:47 +09:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class TestSceneTournamentSceneManager : TournamentTestScene
|
2018-10-16 18:02:47 +09:00
|
|
|
|
{
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 01:06:39 +01:00
|
|
|
|
private void load()
|
2018-10-16 18:02:47 +09:00
|
|
|
|
{
|
2018-11-06 14:49:09 +09:00
|
|
|
|
Add(new TournamentSceneManager());
|
2018-10-16 18:02:47 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|