mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:07:38 +08:00
27 lines
779 B
C#
27 lines
779 B
C#
// 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.
|
|
|
|
using osu.Framework.Platform;
|
|
using osu.Framework.Testing;
|
|
|
|
namespace osu.Game.Tests
|
|
{
|
|
public partial class OsuTestBrowser : OsuGameBase
|
|
{
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|