diff --git a/Lib.Audio/Controls/Velocity.cs b/Lib.Audio/Controls/Velocity.cs new file mode 100644 index 0000000..12b4f5f --- /dev/null +++ b/Lib.Audio/Controls/Velocity.cs @@ -0,0 +1,12 @@ +// Author: Gockner, Simon +// Created: 2021-04-22 +// Copyright(c) 2021 SimonG. All Rights Reserved. + +namespace Lib.Audio.Controls +{ + public enum Velocity + { + On = 127, + Off = 0 + } +} \ No newline at end of file