Skip to content

Instantly share code, notes, and snippets.

@hex13
Created October 7, 2013 15:48
Show Gist options
  • Save hex13/6870139 to your computer and use it in GitHub Desktop.
Save hex13/6870139 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
loadImages('images', ['player.png', 'ufo.png'], initialize);
$(document).keydown(function(e) {
key = {37: 'left', 38: 'up', 39:'right', 40:'down'}[e.keyCode];
player.input(key)
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment