Skip to main content

checker_tema_3_sd/inputs/
mod.rs

1use self::key::Key;
2
3pub mod events;
4pub mod key;
5
6pub enum InputEvent {
7    /// An input event occurred.
8    Input(Key),
9    /// An tick event occurred.
10    Tick,
11}