add split/index decls to Amp, RFlanger

This commit is contained in:
Luna 2020-05-30 22:42:41 -03:00
parent eb18d01cdd
commit 6497fc1dd8
1 changed files with 4 additions and 2 deletions

View File

@ -151,15 +151,17 @@ pub const NewCommand = struct {
pub const Amp = struct {
pub const base_tag = Tag.amp;
pub const base_type = Type.lv2_command;
base: NewCommand,
split: usize,
index: usize,
gain: f32
};
pub const RFlanger = struct {
pub const base_tag = Tag.rflanger;
pub const base_type = Type.lv2_command;
base: NewCommand,
split: usize,
index: usize,
delay_depth_avg: f32,
law_freq: f32,
};