1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-14 19:53:08 +08:00

Add xmldoc to explain IHasInterval.Interval

This commit is contained in:
tsunyoku 2025-01-21 14:28:15 +00:00
parent b8c79d58a7
commit ef8867704a

View File

@ -8,6 +8,9 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Rhythm
/// </summary>
public interface IHasInterval
{
/// <summary>
/// The interval between 2 objects start times.
/// </summary>
double Interval { get; }
}
}