|
|
|
@ -1,10 +1,8 @@
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use crate::types::{InputCause, InputTypeFlags, ProcessingResult};
|
|
|
|
|
|
|
|
|
|
pub mod types;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// error out specifically if no backend is chosen
|
|
|
|
|
#[cfg(not(any(feature="backend_piston", feature="backend_gilrs")))]
|
|
|
|
|
compile_error!("No backend selected, use features=<backend> in Cargo.toml or --features <backend> when building directly.");
|
|
|
|
@ -14,6 +12,12 @@ pub mod backend_piston;
|
|
|
|
|
#[cfg(feature="backend_gilrs")]
|
|
|
|
|
pub mod backend_gilrs;
|
|
|
|
|
|
|
|
|
|
pub use crate::types::{InputCause, InputTypeFlags, ProcessingResult, ButtonState};
|
|
|
|
|
#[cfg(feature="backend_piston")]
|
|
|
|
|
pub use backend_piston::SchemaPiston;
|
|
|
|
|
#[cfg(feature="backend_gilrs")]
|
|
|
|
|
pub use backend_gilrs::SchemaGilrs;
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|
|
|
|
|
|
|
|
|
|