extern crate hound;
pub extern crate instrument;
pub extern crate sample;
extern crate pitch_calc as pitch;
extern crate time_calc as time;
pub use Audio;
pub use ;
pub use Mode;
pub use ;
/// `pitch::Step` represented in discretes intervals, useful for range mapping.
pub type Step = i16;
/// The force with which a note was pressed on a keyboard.
pub type Velocity = f32;
pub const MIN_STEP: Step = 0;
pub const MAX_STEP: Step = 127;