mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-02-01 08:36:42 +01:00
12 lines
206 B
Rust
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);
|
|
|