Skip to content

Instantly share code, notes, and snippets.

@ingrid
Created April 15, 2012 04:57
Show Gist options
  • Save ingrid/2390157 to your computer and use it in GitHub Desktop.
Save ingrid/2390157 to your computer and use it in GitHub Desktop.
Jam bare minimum.
window.onload = function(){
initialize();
}
function initialize(){
var game = jam.Game(800, 600, document.body);
game._canvas.style.border="1px solid black";
game.run();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment