Skip to content

Instantly share code, notes, and snippets.

@andor44
Created February 22, 2013 17:35
Show Gist options
  • Save andor44/5015182 to your computer and use it in GitHub Desktop.
Save andor44/5015182 to your computer and use it in GitHub Desktop.
match sdl::event::poll_event() {
sdl::event::QuitEvent => break main,
sdl::event::NoEvent => break event,
sdl::event::KeyEvent { Key: key, _ } => {
match key {
AKey => {}
_ => {}
}
}
_ => {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment