2024-12-27 23:30:30 +10: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.
|
|
|
|
|
|
2025-01-21 15:58:33 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Utils
|
2024-12-27 23:30:30 +10:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2025-01-21 15:58:33 +00:00
|
|
|
|
/// The interface for objects that provide an interval value.
|
2024-12-27 23:30:30 +10:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IHasInterval
|
|
|
|
|
{
|
2025-01-21 14:28:15 +00:00
|
|
|
|
/// <summary>
|
2025-02-05 15:13:04 +09:00
|
|
|
|
/// The interval – ie delta time – between this object and a known previous object.
|
2025-01-21 14:28:15 +00:00
|
|
|
|
/// </summary>
|
2024-12-27 23:30:30 +10:00
|
|
|
|
double Interval { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|