Add base ready-made abstract scene for osu! mod tests

This commit is contained in:
Salman Ahmed
2020-06-03 23:23:56 +03:00
parent 84b40ea2c6
commit 611f64fd36
4 changed files with 15 additions and 12 deletions

View File

@ -0,0 +1,12 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Osu.Tests.Mods
{
public class OsuModTestScene : ModTestScene
{
protected override Ruleset CreatePlayerRuleset() => new OsuRuleset();
}
}