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

19 lines
203 B
Rust
Raw Normal View History

// TODO: Bitmasking
pub enum Mouse {
Button1,
Button2,
Button3,
Button4,
Button5,
X(i8),
Y(i8),
Wheel(i8),
2021-11-16 00:09:27 -06:00
}
pub trait PS2Mouse {
fn movement();
fn button();
}