Files
termix/engine/src/main.rs
2025-11-23 12:09:38 +01:00

19 lines
440 B
Rust

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!");
}