2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-08-04 14:48:42 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Platform;
|
2017-08-04 14:37:31 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2017-10-14 01:10:21 +08:00
|
|
|
|
using osu.Game;
|
2017-08-04 14:37:31 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
|
|
2017-10-14 01:10:21 +08:00
|
|
|
|
namespace osu.Desktop
|
2017-08-04 14:37:31 +08:00
|
|
|
|
{
|
|
|
|
|
internal class OsuTestBrowser : OsuGameBase
|
|
|
|
|
{
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
LoadComponentAsync(new BackgroundScreenDefault { 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());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void SetHost(GameHost host)
|
|
|
|
|
{
|
|
|
|
|
base.SetHost(host);
|
|
|
|
|
host.Window.CursorState |= CursorState.Hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
|
}
|