#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SendType {
PreFader,
PostFader,
}
#[derive(Debug, Clone)]
pub struct SendConfig {
pub bus_index: usize,
pub level: f32,
pub send_type: SendType,
}
impl Default for SendConfig {
fn default() -> Self {
Self {
bus_index: 0,
level: 0.0,
send_type: SendType::PostFader,
}
}
}