mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
So you can import everything at once, because you're likely going to need at least 90% of it anyways.
19 lines
388 B
Rust
19 lines
388 B
Rust
#![cfg_attr(feature = "simd", feature(portable_simd))]
|
|
|
|
#[macro_use]
|
|
pub mod debug;
|
|
|
|
/// Everything you'd need to use NIH-plug. Import this with `use nih_plug::prelude::*;`.
|
|
pub mod prelude;
|
|
|
|
// These modules have also been re-exported in the prelude.
|
|
pub mod formatters;
|
|
pub mod util;
|
|
|
|
pub mod buffer;
|
|
pub mod context;
|
|
pub mod event_loop;
|
|
pub mod param;
|
|
pub mod plugin;
|
|
pub mod wrapper;
|