1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/ableos/src/driver_traits/mouse.rs

10 lines
113 B
Rust
Raw Normal View History

2021-11-16 00:09:27 -06:00
pub enum PS2MouseButton {
LeftMB,
RightMB,
}
pub trait PS2Mouse {
fn movement();
fn button();
}