1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 10:25:54 +01:00
VoxCharger/Sources/Events/BPM.cs
2020-04-19 03:24:48 +07:00

26 lines
546 B
C#

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);
}
}
}
}