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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
978 B
C#
Raw Normal View History

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
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
{
2018-11-06 17:32:59 +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
}
}
}