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