Skip to main content

input_actions/source/
kind.rs

1/// Enum to differentiate between the two types of inputs: single state (button) and range (axis).
2#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
3pub enum Kind {
4	Axis,
5	Button,
6}