This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Events/IDurationEvent.cs
T

15 lines
274 B
C#

namespace RhythmBase.Events
{
/// <summary>
/// Interface representing a duration event.
/// </summary>
public interface IDurationEvent
{
/// <summary>
/// Gets or sets the duration of the ease event.
/// </summary>
float Duration { get; }
}
}