1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 09:50:04 +08:00
Files
osu-lazer/osu.Game.Rulesets.Mania.Tests/TestSceneManiaModSandbox.cs
T
2020-02-29 21:16:28 -08:00

29 lines
781 B
C#

// 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 System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Game.Rulesets.Mods;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Mania.Tests
{
[TestFixture]
public class TestSceneManiaModSandbox : TestSceneModSandbox
{
public override IReadOnlyList<Type> RequiredTypes => base.RequiredTypes.Append(typeof(TestSceneManiaModSandbox)).ToList();
public TestSceneManiaModSandbox()
: this(null)
{
}
public TestSceneManiaModSandbox(Mod mod = null)
: base(new ManiaRuleset(), mod)
{
}
}
}