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

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
{
}
}