Archived
forked from RDTKEditor/RDTKEditor
10 lines
186 B
C#
10 lines
186 B
C#
namespace RhythmBase.Events
|
|
{
|
|
/// <summary>
|
|
/// Represents an event that occurs at the beginning of a bar.
|
|
/// </summary>
|
|
public interface IBarBeginningEvent : IBaseEvent
|
|
{
|
|
}
|
|
}
|