@@ -0,0 +1,6 @@
+var Grid = function(){
+ this.size = {x: 20, y: 20};
+ this.time_step = 400;
+ this.collectibles = [];
+ this.snakes = [];
+}