1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:03:21 +08:00

ihasinterval interface

This commit is contained in:
Jay Lawton 2024-12-01 15:33:20 +10:00
parent 10ce9f6365
commit 8d9bea7b9d

View File

@ -0,0 +1,13 @@
// 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; }
}
}