mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 22:27:25 +08:00
28 lines
767 B
C#
28 lines
767 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;
|
|
using osu.Framework.GameModes.Testing;
|
|
using osu.Framework.Graphics.Cursor;
|
|
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;
|
|
using osu.Desktop.Platform;
|
|
|
|
namespace osu.Desktop.VisualTests
|
|
{
|
|
class VisualTestGame : OsuGameBase
|
|
{
|
|
protected override void Load(BaseGame game)
|
|
{
|
|
base.Load(game);
|
|
Add(new TestBrowser());
|
|
}
|
|
}
|
|
}
|