tek/src/devices/looper.rs

12 lines
206 B
Rust

//! TODO: audio looper (merge with [crate::devices::sampler::Sampler]?)
use crate::core::*;
pub struct Looper {
pub name: String
}
render!(Looper);
handle!(Looper);
process!(Looper);
ports!(Looper);