forked from AbleOS/ableos
10 lines
113 B
Rust
10 lines
113 B
Rust
pub enum PS2MouseButton {
|
|
LeftMB,
|
|
RightMB,
|
|
}
|
|
|
|
pub trait PS2Mouse {
|
|
fn movement();
|
|
fn button();
|
|
}
|