osu/osu.Game.Rulesets.Osu.Tests/TestSceneOsuFlashlight.cs

20 lines
577 B
C#
Raw Normal View History

2019-04-12 05:53:23 +00:00
// 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.Rulesets.Mods;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Screens.Play;
namespace osu.Game.Rulesets.Osu.Tests
{
public class TestSceneOsuFlashlight : TestSceneOsuPlayer
2019-04-12 05:53:23 +00:00
{
protected override Player CreatePlayer(Ruleset ruleset)
{
2019-04-18 01:27:30 +00:00
Mods.Value = new Mod[] { new OsuModAutoplay(), new OsuModFlashlight(), };
2019-04-12 05:53:23 +00:00
return base.CreatePlayer(ruleset);
}
}
}