Neale Pickett
·
2026-02-24
types.rs
1#[derive(Debug)]
2pub struct Layout {
3 pub name: &'static str,
4 // [Sides: 2][Rows: 4][Columns: 5][Push/Pull: 2]
5 pub notes: [[[[i8; 2]; 5]; 4]; 2],
6}
git clone https://git.woozle.org/neale/concertina.git
1#[derive(Debug)]
2pub struct Layout {
3 pub name: &'static str,
4 // [Sides: 2][Rows: 4][Columns: 5][Push/Pull: 2]
5 pub notes: [[[[i8; 2]; 5]; 4]; 2],
6}