summaryrefslogblamecommitdiffstats
path: root/core/src/keyboard.rs
blob: b810ccb0d6c12bd4f1225d611a19ca35ac07d0a6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                              

            
          
             
              
 
                     

                           
                             
//! Listen to keyboard events.
pub mod key;

mod event;
mod location;
mod modifiers;

pub use event::Event;
pub use key::Key;
pub use location::Location;
pub use modifiers::Modifiers;