hextris/entities.js
Noah Moroze 31ce597c09 MATH
2014-05-17 10:43:16 -04:00

15 lines
226 B
JavaScript

//you can change these to sexier stuff
var colors = [
"black",
"orange",
"red",
"blue",
];
var Clock = function(sides) {
this.sides = sides;
this.blocks = [];
for(var i=0; i<sides; i++) {
this.blocks.push([]);
}
}