2016-09-23 23:39:20 +08:00
|
|
|
|
// Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
|
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
using osu.Framework;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Framework.GameModes.Testing;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
2016-10-14 03:10:00 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Game;
|
2016-10-25 02:57:00 +08:00
|
|
|
|
using osu.Framework.Desktop.Platform;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.GameModes.Play;
|
|
|
|
|
using SQLiteNetExtensions.Extensions;
|
2016-10-25 22:44:43 +08:00
|
|
|
|
using osu.Desktop.Platform;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-10-26 16:26:26 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
|
|
|
|
class VisualTestGame : OsuGameBase
|
|
|
|
|
{
|
2016-11-01 22:24:14 +08:00
|
|
|
|
protected override void Load(BaseGame game)
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-10-10 16:17:26 +08:00
|
|
|
|
base.Load(game);
|
2016-09-23 23:39:20 +08:00
|
|
|
|
Add(new TestBrowser());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|