2019-01-24 16:43:03 +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-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-02-15 16:01:06 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2019-02-15 16:01:06 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2018-06-21 11:48:44 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests
|
|
|
|
|
{
|
|
|
|
|
public class OsuTestBrowser : OsuGameBase
|
|
|
|
|
{
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2019-02-15 16:01:06 +08:00
|
|
|
|
LoadComponentAsync(new ScreenStack(new BackgroundScreenDefault { Colour = OsuColour.Gray(0.5f) })
|
2018-06-21 11:48:44 +08:00
|
|
|
|
{
|
2019-02-15 16:01:06 +08:00
|
|
|
|
Depth = 10,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-06-21 11:48:44 +08:00
|
|
|
|
}, AddInternal);
|
2018-04-13 17:19:50 +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());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void SetHost(GameHost host)
|
|
|
|
|
{
|
|
|
|
|
base.SetHost(host);
|
|
|
|
|
host.Window.CursorState |= CursorState.Hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|