1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Desktop.VisualTests/VisualTestGame.cs

21 lines
528 B
C#
Raw Normal View History

// Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics.Cursor;
2016-10-14 03:10:00 +08:00
using osu.Game.Database;
using osu.Game;
namespace osu.Framework.VisualTests
{
class VisualTestGame : OsuGameBase
{
2016-10-10 16:17:26 +08:00
public override void Load(BaseGame game)
{
2016-10-10 16:17:26 +08:00
base.Load(game);
Add(new TestBrowser());
}
}
}