1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 18:35:54 +01:00
VoxCharger/Sources/Events/BPM.cs

26 lines
546 B
C#
Raw Normal View History

2020-04-18 22:24:48 +02:00
using System;
namespace VoxCharger
{
public abstract partial class Event
{
public class BPM : Event
{
public float Value { get; set; }
public bool IsStop { get; set; }
public BPM(Time time, float value)
: base(time)
{
Value = value;
}
public override string ToString()
{
return $"{base.ToString()}\t{Value:0.00}\t{4}" + (IsStop ? "-" : string.Empty);
}
}
}
}