rsbot 0.2.3

Simulate keypresses with Rust!
Documentation
extern crate rsbot;

fn main() {
	let mut bot = rsbot::Bot::new();
	// set_mouse_pos needs bot to be mutable under Linux.

	bot.set_mouse_pos(0, 0); // Absolutely positioned
	bot.move_mouse(50, 50);  // Relatively positioned
}