bevy_midix 3.0.0-rc2

Send/receive MIDI data in bevy with midix.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

pub mod asset;
pub mod input;
pub mod output;
pub mod plugin;
pub mod synth;

mod midix {
    pub use midix::prelude::*;
}

/// Commonly re-exported types
pub mod prelude {
    #[allow(ambiguous_glob_reexports)]
    pub use crate::{asset::*, input::*, midix::*, output::*, plugin::*, synth::*};
}