Files
Cagire/src/engine/mod.rs
Raphaël Forment d40d713649
Some checks failed
Deploy Website / deploy (push) Failing after 4m50s
Feat: really good lookahead mechanism for scheduling
2026-02-04 20:28:42 +01:00

19 lines
574 B
Rust

mod audio;
mod dispatcher;
mod link;
pub mod realtime;
pub mod sequencer;
mod timing;
pub use timing::{substeps_in_window, StepTiming, SyncTime};
// AnalysisHandle and SequencerHandle are used by src/bin/desktop.rs
#[allow(unused_imports)]
pub use audio::{build_stream, AnalysisHandle, AudioStreamConfig, ScopeBuffer, SpectrumBuffer};
pub use link::LinkState;
#[allow(unused_imports)]
pub use sequencer::{
spawn_sequencer, AudioCommand, MidiCommand, PatternChange, PatternSnapshot, SeqCommand,
SequencerConfig, SequencerHandle, SequencerSnapshot, StepSnapshot,
};