Add tracks editor

This commit is contained in:
Elias Projahn 2020-10-31 23:07:25 +01:00
parent 6ddee1d187
commit b8911eafaa
11 changed files with 754 additions and 2 deletions

View file

@ -181,3 +181,9 @@ impl From<RecordingDescription> for RecordingInsertion {
}
}
}
#[derive(Debug, Clone)]
pub struct Track {
pub work_parts: Vec<usize>,
pub file_name: String,
}