logo
1
2
3
4
5
6
7
8
9
10
11
/// Representing the buttons on a Mouse for use in the InputMouse virtual controller.
///
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MouseButton {
    /// Left mouse button
    Left,
    /// Middle mouse button
    Middle,
    /// Right mouse button
    Right,
}