1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Desktop.VisualTests/VisualTestGame.cs
Dean Herbert 7bdb2fcfc7 Add basic implementation of VisualTest framework for osu! project.
Comes with one complimentary test.
2016-09-24 15:47:17 +09:00

22 lines
531 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;
namespace osu.Framework.VisualTests
{
class VisualTestGame : OsuGameBase
{
public override void Load()
{
base.Load();
Add(new TestBrowser());
ShowPerformanceOverlay = true;
}
}
}