2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens.Testing;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Game;
|
2017-02-14 12:34:57 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class VisualTestGame : OsuGameBase
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
new BackgroundScreenDefault { Depth = 10 }.LoadAsync(this, AddInternal);
|
2017-02-14 12:34:57 +08:00
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
// Have to construct this here, rather than in the constructor, because
|
|
|
|
|
// we depend on some dependencies to be loaded within OsuGameBase.load().
|
2016-09-23 23:39:20 +08:00
|
|
|
|
Add(new TestBrowser());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|