iced-yoda/core/src/keyboard.rs

12 lines
184 B
Rust
Raw Normal View History

//! Listen to keyboard events.
pub mod key;
2020-04-30 04:59:07 +02:00
mod event;
mod location;
mod modifiers;
2020-04-30 04:59:07 +02:00
pub use event::Event;
pub use key::Key;
pub use location::Location;
pub use modifiers::Modifiers;