Archived
forked from RDTKEditor/RDTKEditor
15 lines
274 B
C#
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; }
|
|
}
|
|
}
|