1
0
Fork 0
nih-plug/src/wrapper.rs
Robbert van der Helm 54371fb488 Expose the State object
So we can later allow plugins to save and restore state from their GUI
this way.
2022-04-07 14:12:53 +02:00

8 lines
246 B
Rust

//! Wrappers for different plugin types. Each wrapper has an entry point macro that you can pass the
//! name of a type that implements `Plugin` to. The macro will handle the rest.
pub mod clap;
pub mod state;
pub(crate) mod util;
pub mod vst3;