mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
modularize core
This commit is contained in:
parent
a4061535b5
commit
2837ffff4a
43 changed files with 629 additions and 770 deletions
7
src/device/mod.rs
Normal file
7
src/device/mod.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
mod chain; pub use self::chain::{Chain, Plugin, Sampler, Sample, Voice};
|
||||
mod launcher; pub use self::launcher::{Launcher, Scene};
|
||||
mod looper; pub use self::looper::Looper;
|
||||
mod mixer; pub use self::mixer::Mixer;
|
||||
mod sequencer; pub use self::sequencer::{Sequencer, Phrase};
|
||||
mod track; pub use self::track::Track;
|
||||
mod transport; pub use self::transport::Transport;
|
||||
Loading…
Add table
Add a link
Reference in a new issue