mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:37:25 +08:00
31 lines
975 B
C#
31 lines
975 B
C#
// 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.
|
|
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
{
|
|
public class TournamentTestBrowser : TournamentGameBase
|
|
{
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
BracketLoadTask.ContinueWith(_ => Schedule(() =>
|
|
{
|
|
LoadComponentAsync(new Background("Menu/menu-background-0")
|
|
{
|
|
Colour = OsuColour.Gray(0.5f),
|
|
Depth = 10
|
|
}, AddInternal);
|
|
|
|
// 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());
|
|
}));
|
|
}
|
|
}
|
|
}
|