mirror of
https://github.com/ppy/osu.git
synced 2026-06-02 10:50:55 +08:00
824497d82c
* implement bell curve into diffcalcutils * remove unneeded attributes * implement new rhythm skill * change dho variables * update dho rhythm * interval interface * implement rhythmevaluator * evenhitobjects * evenpatterns * evenrhythm * change attribute ordering * initial balancing * change naming to Same instead of Even * remove attribute bump for display * Fix diffcalc tests --------- Co-authored-by: StanR <hi@stanr.info>
14 lines
405 B
C#
14 lines
405 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.
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Rhythm
|
|
{
|
|
/// <summary>
|
|
/// The interface for hitobjects that provide an interval value.
|
|
/// </summary>
|
|
public interface IHasInterval
|
|
{
|
|
double Interval { get; }
|
|
}
|
|
}
|