1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 19:17:25 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseReplay.cs
Dean Herbert 4113e141a2 Update player testcase to be usable
Includes a real .osu file with slight modifications for easier testing.
2017-09-12 12:20:42 +09:00

22 lines
712 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;
using osu.Game.Screens.Play;
using System.Linq;
namespace osu.Desktop.Tests.Visual
{
internal class TestCaseReplay : TestCasePlayer
{
public override string Description => @"Testing replay playback.";
protected override Player CreatePlayer(WorkingBeatmap beatmap, Ruleset ruleset)
{
beatmap.Mods.Value = beatmap.Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() });
return base.CreatePlayer(beatmap, ruleset);
}
}
}