added canvas

This commit is contained in:
lengstrom 2014-05-17 10:26:55 -04:00
parent cb720a19da
commit 710d17c827

View file

@ -1,4 +1,6 @@
// main thing here // main thing here
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
window.requestAnimFrame = (function(){ window.requestAnimFrame = (function(){
return window.requestAnimationFrame || return window.requestAnimationFrame ||
@ -16,6 +18,9 @@ window.requestAnimFrame = (function(){
function render() { function render() {
// game code // game code
requestAnimFrame(animloop); requestAnimFrame(animloop);
}
function block(lane) {
} }