hextris/entities.js

16 lines
226 B
JavaScript
Raw Normal View History

2014-05-17 14:43:16 +00:00
//you can change these to sexier stuff
var colors = [
"black",
"orange",
"red",
"blue",
];
2014-05-17 14:24:39 +00:00
var Clock = function(sides) {
this.sides = sides;
this.blocks = [];
for(var i=0; i<sides; i++) {
this.blocks.push([]);
}
}