This commit is contained in:
Noah Moroze 2014-05-17 10:43:19 -04:00
commit 34db8854ed

View file

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