osu/osu.Game/Rulesets/Mods/ModWindUp.cs

19 lines
691 B
C#
Raw Normal View History

2019-01-26 05:43:27 +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.
2019-01-26 04:15:45 +00:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Mods
{
public class ModWindUp<T> : ModTimeRamp<T>
where T : HitObject
2019-01-26 04:15:45 +00:00
{
public override string Name => "Wind Up";
public override string Acronym => "WU";
2019-03-04 09:39:13 +00:00
public override string Description => "Can you keep up?";
public override FontAwesome Icon => FontAwesome.fa_chevron_circle_up;
public override double ScoreMultiplier => 1.0;
2019-03-06 05:14:41 +00:00
protected override double FinalRateAdjustment => 0.5;
2019-01-26 04:15:45 +00:00
}
}