osu/osu.Desktop.VisualTests/VisualTestGame.cs

29 lines
784 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;
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics.Cursor;
2016-10-13 19:10:00 +00:00
using osu.Game.Database;
using osu.Game;
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 14:44:43 +00:00
using osu.Desktop.Platform;
2016-11-08 23:13:20 +00:00
using osu.Framework.Allocation;
namespace osu.Desktop.VisualTests
{
class VisualTestGame : OsuGameBase
{
[BackgroundDependencyLoader]
private void load()
{
Add(new TestBrowser());
}
}
}