mod kit;
mod rowbuf;
mod state;
pub use kit::*;
pub use rowbuf::RowBuf;
pub use state::{state_color, value_color, ParamState};
pub mod spacing {
pub const TIGHT: usize = 0;
pub const ROW: usize = 1;
pub const SECTION: usize = 2;
}
#[cfg(test)]
mod spacing_tests {
use super::spacing;
#[allow(clippy::assertions_on_constants)]
#[test]
fn rhythm_steps_are_ordered() {
assert!(spacing::TIGHT < spacing::ROW);
assert!(spacing::ROW < spacing::SECTION);
}
}