2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2017-08-04 06:48:42 +00:00
|
|
|
|
using osu.Framework.Platform;
|
2017-08-04 06:37:31 +00:00
|
|
|
|
using osu.Framework.Testing;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-03-28 03:33:01 +00:00
|
|
|
|
namespace osu.Game.Tests
|
2017-08-04 06:37:31 +00:00
|
|
|
|
{
|
2018-03-28 03:33:01 +00:00
|
|
|
|
public partial class OsuTestBrowser : OsuGameBase
|
2017-08-04 06:37:31 +00:00
|
|
|
|
{
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-04 06:37:31 +00: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 09:19:50 +00:00
|
|
|
|
|
2017-08-04 06:37:31 +00:00
|
|
|
|
public override void SetHost(GameHost host)
|
|
|
|
|
{
|
|
|
|
|
base.SetHost(host);
|
|
|
|
|
host.Window.CursorState |= CursorState.Hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 11:21:19 +00:00
|
|
|
|
}
|