tek/src/model/looper.rs

10 lines
198 B
Rust

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