namespace RhythmBase.Events
{
///
/// Represents an event to set the beats per minute (BPM) in the rhythm base.
///
public class SetBeatsPerMinute : BaseBeatsPerMinute
{
///
/// Initializes a new instance of the class.
///
public SetBeatsPerMinute()
{
Type = EventType.SetBeatsPerMinute;
Tab = Tabs.Sounds;
}
///
public override EventType Type { get; }
///
public override Tabs Tab { get; }
///
public override string ToString() => base.ToString() + $" BPM:{BeatsPerMinute}";
}
}