WIP: Trying to get somewhere

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-23 12:01:03 +01:00
parent 435d6c15be
commit 16e5951c1e
8 changed files with 225 additions and 5 deletions

View File

@@ -1,5 +1,19 @@
use lib;
fn main() {
/*
* Engine should run and wait for commands,
* but currently I need to implement the multitrack
* audio player somehow
*
*
* for track in tracks {
* if track.is_region_playing(now: time) {
* let current_region = track.get_current_region(now: time)
* let audio = current_region.get_data(now: time)
* }
* }
*/
println!("Hello, world!");
}