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-11-06 16:59:01 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-11-06 16:59:01 +08:00
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Graphics;
|
2019-06-14 15:38:29 +08:00
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2018-11-06 16:59:01 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class TournamentTestBrowser : TournamentGameBase
|
2018-11-06 16:59:01 +08:00
|
|
|
{
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2021-02-13 00:10:39 +08:00
|
|
|
BracketLoadTask.ContinueWith(_ => Schedule(() =>
|
2018-11-06 16:59:01 +08:00
|
|
|
{
|
2021-02-13 00:10:39 +08:00
|
|
|
LoadComponentAsync(new Background("Menu/menu-background-0")
|
|
|
|
{
|
|
|
|
Colour = OsuColour.Gray(0.5f),
|
|
|
|
Depth = 10
|
2023-01-21 19:49:47 +08:00
|
|
|
}, Add);
|
2018-11-06 16:59:01 +08:00
|
|
|
|
2021-02-13 00:10:39 +08: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 16:59:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|