summaryrefslogtreecommitdiffstats
path: root/native/src/input/mouse.rs
blob: 7198b233e9b76e0025abf41ef2f2d77956169b20 (plain) (blame)
1
2
3
4
5
6
7
8
9
//! Build mouse events.
mod button;
mod event;

pub mod click;

pub use button::Button;
pub use click::Click;
pub use event::{Event, ScrollDelta};