| 
						
						
						
					 | 
					 | 
					@ -1,10 +1,8 @@
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					use serde::{Deserialize, Serialize};
 | 
					 | 
					 | 
					 | 
					use serde::{Deserialize, Serialize};
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					use std::collections::HashMap;
 | 
					 | 
					 | 
					 | 
					use std::collections::HashMap;
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					use crate::types::{InputCause, InputTypeFlags, ProcessingResult};
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					pub mod types;
 | 
					 | 
					 | 
					 | 
					pub mod types;
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					// error out specifically if no backend is chosen
 | 
					 | 
					 | 
					 | 
					// error out specifically if no backend is chosen
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					#[cfg(not(any(feature="backend_piston", feature="backend_gilrs")))]	
 | 
					 | 
					 | 
					 | 
					#[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.");
 | 
					 | 
					 | 
					 | 
					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")]
 | 
					 | 
					 | 
					 | 
					#[cfg(feature="backend_gilrs")]
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					pub mod 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)]
 | 
					 | 
					 | 
					 | 
					#[cfg(test)]
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					mod tests;
 | 
					 | 
					 | 
					 | 
					mod tests;
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					 | 
					
 
 |