Example
// Create a simple blip sound
let mut sample = default;
// Use a sine wave oscillator
sample.osc_type;
// Set the envelope
sample.env_attack;
sample.env_decay;
sample.env_sustain;
sample.env_release;
// Add some distortion
sample.dis_crunch;
// Create a mixer so we can play the sound
let mixer = default;
// Play our sample
mixer.play;
// Plug our mixer into the audio device loop
// ...
mixer.generate;