summaryrefslogtreecommitdiffstats
path: root/src/input/mouse/button.rs
blob: c51bedfc5203e408ff410af4b86c3554ee8131e1 (plain) (blame)
1
2
3
4
5
6
7
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
pub enum Button {
    Left,
    Right,
    Middle,
    Other(u8),
}