mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
30 lines
927 B
C#
30 lines
927 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Platform;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
namespace osu.Game.Tests
|
|
{
|
|
public class OsuTestBrowser : OsuGameBase
|
|
{
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
LoadComponentAsync(new BackgroundScreenDefault { Depth = 10 }, AddInternal);
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|