summaryrefslogtreecommitdiffstats
path: root/core/src/keyboard/location.rs
blob: feff08200182a74577789641d9b45b32f404e957 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/// The location of a key on the keyboard.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Location {
    /// The standard group of keys on the keyboard.
    Standard,
    /// The left side of the keyboard.
    Left,
    /// The right side of the keyboard.
    Right,
    /// The numpad of the keyboard.
    Numpad,
}