WIP: Still nothing meaningful
Some checks failed
ci/woodpecker/push/code_tests Pipeline was successful
ci/woodpecker/push/pre_commit_test Pipeline failed

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-23 17:53:49 +01:00
parent 285c4a10fd
commit 0a1d68cb2d
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