1
0
Fork 0

adds multiple voices and the ability to iterate/deiterate between them

This commit is contained in:
Jack Humbert 2016-04-21 18:14:25 -04:00
parent a8fd65d86f
commit 9828aba2a1
3 changed files with 53 additions and 5 deletions

View file

@ -13,9 +13,13 @@ float voice_envelope(float frequency);
typedef enum {
default_voice,
butts_fader,
octave_crunch
octave_crunch,
duty_osc,
number_of_voices // important that this is last
} voice_type;
void set_voice(voice_type v);
void voice_iterate();
void voice_deiterate();
#endif