summaryrefslogtreecommitdiffstats
path: root/native/src/input/button_state.rs
blob: 988043bafaaebaf419681f0444c12a998244af2a (plain) (blame)
1
2
3
4
5
6
7
8
9
/// The state of a button.
#[derive(Debug, Hash, Ord, PartialOrd, PartialEq, Eq, Clone, Copy)]
pub enum ButtonState {
    /// The button is pressed.
    Pressed,

    /// The button is __not__ pressed.
    Released,
}