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-11-06 08:59:01 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
|
using osu.Game.Graphics;
|
2019-06-14 07:38:29 +00:00
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2018-11-06 08:59:01 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
|
{
|
2018-11-06 09:32:59 +00:00
|
|
|
|
public partial class TournamentTestBrowser : TournamentGameBase
|
2018-11-06 08:59:01 +00:00
|
|
|
|
{
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2021-02-12 16:10:39 +00:00
|
|
|
|
BracketLoadTask.ContinueWith(_ => Schedule(() =>
|
2018-11-06 08:59:01 +00:00
|
|
|
|
{
|
2021-02-12 16:10:39 +00:00
|
|
|
|
LoadComponentAsync(new Background("Menu/menu-background-0")
|
|
|
|
|
{
|
|
|
|
|
Colour = OsuColour.Gray(0.5f),
|
|
|
|
|
Depth = 10
|
2023-01-21 11:49:47 +00:00
|
|
|
|
}, Add);
|
2018-11-06 08:59:01 +00:00
|
|
|
|
|
2021-02-12 16:10:39 +00:00
|
|
|
|
// Have to construct this here, rather than in the constructor, because
|
|
|
|
|
// we depend on some dependencies to be loaded within OsuGameBase.load().
|
|
|
|
|
Add(new TestBrowser());
|
|
|
|
|
}));
|
2018-11-06 08:59:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|