open_sesame/input/
mod.rs

1//! Input processing module
2//!
3//! Handles keyboard input and converts to actions.
4
5mod buffer;
6mod processor;
7
8pub use buffer::InputBuffer;
9pub use processor::{InputAction, InputProcessor, SelectionDirection};