Add set_cursor_position function

This commit is contained in:
Pierre Krieger 2015-03-10 10:29:07 +01:00
parent 277b66a708
commit c61c33a833
5 changed files with 36 additions and 0 deletions

View file

@ -664,4 +664,8 @@ impl Window {
NSWindow::backingScaleFactor(self.window) as f32
}
}
pub fn set_cursor_position(&self, x: i32, y: i32) -> Result<(), ()> {
unimplemented!();
}
}