More work on win32 implementation

This commit is contained in:
Pierre Krieger 2015-03-26 19:01:27 +01:00
parent bb418efcc7
commit bae1e42b8b
2 changed files with 16 additions and 2 deletions

View file

@ -42,6 +42,11 @@ fn main() {
.ok().expect("could not grab mouse cursor");
}
},
a @ Event::MouseMoved(_) => {
println!("{:?}", a);
},
_ => (),
}