musicbox 0.3.0

General Musical Framework for working with tonality
Documentation
mod rhythm;
pub mod sound;
mod time_signature;
use rhythm::Rhythm;
use crate::notation::zoot_allures::Notation;
use crate::instrument::Instrument;

pub struct MusicScore{
    bars: Bar,
}


struct Bar {
    rhythm: Rhythm, 
    instruments: Instrument,
}



struct TimeSign {
    division: Notation,
}