8 lines
106 B
Rust
8 lines
106 B
Rust
|
use nih_plug::prelude::*;
|
||
|
|
||
|
use vst::GameboyEmu;
|
||
|
|
||
|
fn main() {
|
||
|
nih_export_standalone::<GameboyEmu>();
|
||
|
}
|