mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
10 lines
198 B
Rust
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);
|