musicbox 0.3.0

General Musical Framework for working with tonality
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod guitar;

pub enum Classification {
    Percussion,
    Wind,
    Stringed,
    Electronic,
}

pub struct Instrument {
    class: Classification,
}