1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game.Tournament.Tests/TournamentTestBrowser.cs

31 lines
978 B
C#
Raw Normal View History

2023-06-23 00:37:25 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-03-04 12:24:19 +08:00
// See the LICENCE file in the repository root for full licence text.
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();
BracketLoadTask.ContinueWith(_ => Schedule(() =>
2018-11-06 16:59:01 +08:00
{
LoadComponentAsync(new Background("Menu/menu-background-0")
{
Colour = OsuColour.Gray(0.5f),
Depth = 10
}, Add);
2018-11-06 16:59:01 +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
}
}
}