mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:28:00 +08:00
20 lines
815 B
C#
20 lines
815 B
C#
// 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.Mania.Scoring;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
{
|
|
public class ManiaModDoubleTime : ModDoubleTime, IManiaRateAdjustmentMod
|
|
{
|
|
public HitWindows HitWindows { get; set; } = new ManiaHitWindows();
|
|
|
|
// For now, all rate-increasing mods should be given a 1x multiplier in mania because it doesn't always
|
|
// make the map harder and is more of a personal preference.
|
|
// In the future, we can consider adjusting this by experimenting with not applying the hitwindow leniency.
|
|
public override double ScoreMultiplier => 1;
|
|
}
|
|
}
|