mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-02-21 08:19:03 +01:00
Some checks are pending
/ build (push) Waiting to run
might join app + device + engine again?
11 lines
324 B
Rust
11 lines
324 B
Rust
use crate::*;
|
|
|
|
pub type MidiData = Vec<Vec<MidiMessage>>;
|
|
|
|
pub type ClipPool = Vec<Arc<RwLock<MidiClip>>>;
|
|
|
|
pub type CollectedMidiInput<'a> = Vec<Vec<(u32, Result<LiveEvent<'a>, MidiError>)>>;
|
|
|
|
pub type SceneWith<'a, T> = (usize, &'a Scene, usize, usize, T);
|
|
|
|
pub type MidiSample = (Option<u7>, Arc<RwLock<crate::Sample>>);
|