WIP: Still nothing meaningful

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-23 17:53:49 +01:00
parent 0737b6848c
commit 6959d9917a
6 changed files with 45 additions and 27 deletions

View File

@@ -1,6 +1,23 @@
use lib;
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
};
let track = Track{
metadata: Metadata::new("test".to_string()),
track_type: lib::track::TrackType::Audio,
active: true
};
current_project.tracks = Some(vec![track]);
/*
* Engine should run and wait for commands,
* but currently I need to implement the multitrack