This commit is contained in:
2026-01-21 17:05:30 +01:00
commit 67322381c3
59 changed files with 10421 additions and 0 deletions

10
src/engine/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
mod audio;
mod link;
mod sequencer;
pub use audio::{build_stream, AudioStreamConfig, ScopeBuffer};
pub use link::LinkState;
pub use sequencer::{
spawn_sequencer, AudioCommand, PatternChange, PatternSnapshot, SeqCommand, SequencerSnapshot,
StepSnapshot,
};