mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 04:17:25 +08:00
23 lines
686 B
C#
23 lines
686 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCaseReplay : TestCasePlayer
|
|
{
|
|
public override string Description => @"Testing replay playback.";
|
|
|
|
protected override Player CreatePlayer(WorkingBeatmap beatmap)
|
|
{
|
|
beatmap.Mods.Value = new Mod[] { new OsuModAutoplay() };
|
|
|
|
return base.CreatePlayer(beatmap);
|
|
}
|
|
}
|
|
}
|