2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
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 SQLiteNetExtensions.Extensions;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
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-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-13 01:34:36 +08:00
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
// Have to construct this here, rather than in the constructor, because
|
|
|
|
|
// we depend on some dependencies to be loaded within OsuGameBase.load().
|
2016-09-23 23:39:20 +08:00
|
|
|
|
Add(new TestBrowser());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|