pub const MOUSE_BUTTON_RIGHT: u8 = 1;Expand description
Mouse button constant for the right mouse button.
ยงExamples
use app_input::mouse::{Mouse, MOUSE_BUTTON_RIGHT};
let mouse = Mouse::coalesced();
let right_pressed = mouse.button_state(MOUSE_BUTTON_RIGHT);