2019-03-04 12:24:19 +08: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-09-10 03:51:38 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-09-10 03:51:38 +08:00
|
|
|
using osu.Framework.Allocation;
|
2018-09-21 18:58:47 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2019-06-18 14:28:36 +08:00
|
|
|
using osu.Game.Tournament.Screens.Editors;
|
2018-09-10 03:51:38 +08:00
|
|
|
|
2019-06-18 14:28:36 +08:00
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
2018-09-10 03:51:38 +08:00
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class TestSceneLadderEditorScreen : TournamentTestScene
|
2018-09-10 03:51:38 +08:00
|
|
|
{
|
2018-10-16 14:20:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2018-09-10 03:51:38 +08:00
|
|
|
{
|
2018-10-13 06:09:33 +08:00
|
|
|
Add(new OsuContextMenuContainer
|
2018-09-21 18:58:47 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-06-18 14:28:36 +08:00
|
|
|
Child = new LadderEditorScreen()
|
2018-10-13 06:09:33 +08:00
|
|
|
});
|
2018-09-10 03:51:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|