Multitrack audio implementation #2

Open
allanger wants to merge 6 commits from multitrack-audio into main
2 changed files with 5 additions and 7 deletions
Showing only changes of commit 1a679693d3 - Show all commits

View File

@@ -1,19 +1,17 @@
use lib::{self, metadata::Metadata, track::Track};
fn main() {
let mut current_project = lib::project::Project {
name: "test".to_string(),
tracks: None,
regions: None,
current_sample: 0
current_sample: 0,
};
let track = Track {
metadata: Metadata::new("test".to_string()),
track_type: lib::track::TrackType::Audio,
active: true
active: true,
};
current_project.tracks = Some(vec![track]);

View File

@@ -1,5 +1,5 @@
pub mod metadata;
pub mod project;
pub mod region;
pub mod track;
pub mod project;