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

19 lines
535 B
C#

namespace RhythmBase.Events
{
/// <summary>
/// Represents an abstract base class for beat actions in a rhythm-based application.
/// </summary>
public abstract class BaseBeat : BaseRowAction
{
/// <summary>
/// Initializes a new instance of the <see cref="BaseBeat"/> class and sets the Tab property to Rows.
/// </summary>
protected BaseBeat() { }
/// <summary>
/// Gets the tab associated with the beat action, which is always set to Rows.
/// </summary>
public override Tabs Tab { get; } = Tabs.Rows;
}
}