1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 17:52:56 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Mods/IGenerateSpeedAdjustments.cs
2017-06-09 19:57:03 +09:00

15 lines
554 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 System.Collections.Generic;
using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.Timing;
namespace osu.Game.Rulesets.Mania.Mods
{
internal interface IGenerateSpeedAdjustments
{
void ApplyToHitRenderer(ManiaHitRenderer hitRenderer, ref List<SpeedAdjustmentContainer>[] hitObjectTimingChanges, ref List<SpeedAdjustmentContainer> barlineTimingChanges);
}
}