1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneOsuFlashlight.cs

20 lines
577 B
C#
Raw Normal View History

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