osu/osu.Game/Tests/OsuTestBrowser.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
779 B
C#
Raw Normal View History

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