1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Desktop.VisualTests/VisualTestGame.cs
2016-10-24 11:39:18 -04:00

21 lines
528 B
C#

// 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;
using osu.Game.Database;
using osu.Game;
namespace osu.Framework.VisualTests
{
class VisualTestGame : OsuGameBase
{
public override void Load(BaseGame game)
{
base.Load(game);
Add(new TestBrowser());
}
}
}