2018-09-09 19:51:38 +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-09-21 10:58:47 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2018-09-21 09:51:37 +00:00
|
|
|
using osu.Game.Tournament.Screens.Ladder;
|
2018-09-09 19:51:38 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
{
|
2018-10-12 22:09:33 +00:00
|
|
|
public class TestCaseLadderManager : LadderTestCase
|
2018-09-09 19:51:38 +00:00
|
|
|
{
|
2018-10-16 06:20:12 +00:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2018-09-09 19:51:38 +00:00
|
|
|
{
|
2018-10-12 22:09:33 +00:00
|
|
|
Add(new OsuContextMenuContainer
|
2018-09-21 10:58:47 +00:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-11-16 11:14:34 +00:00
|
|
|
Child = new LadderScreen()
|
2018-10-12 22:09:33 +00:00
|
|
|
});
|
2018-09-09 19:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|