2019-04-12 13:53:23 +08: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;
|
2020-03-05 10:25:07 +08:00
|
|
|
using osu.Game.Tests.Visual;
|
2019-04-12 13:53:23 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
2019-05-15 03:37:25 +08:00
|
|
|
public class TestSceneOsuFlashlight : TestSceneOsuPlayer
|
2019-04-12 13:53:23 +08:00
|
|
|
{
|
2020-03-05 10:25:07 +08:00
|
|
|
protected override TestPlayer CreatePlayer(Ruleset ruleset)
|
2019-04-12 13:53:23 +08:00
|
|
|
{
|
2019-12-13 20:45:38 +08:00
|
|
|
SelectedMods.Value = new Mod[] { new OsuModAutoplay(), new OsuModFlashlight(), };
|
2019-04-18 09:27:30 +08:00
|
|
|
|
2019-04-12 13:53:23 +08:00
|
|
|
return base.CreatePlayer(ruleset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|