basic grid implementation with initial setup

This commit is contained in:
Gabriele Cirulli
2014-03-08 12:50:45 +01:00
parent 0970a722ba
commit cf31e146aa
6 changed files with 131 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
document.addEventListener("DOMContentLoaded", function () {
var actuator = new HTMLActuator;
var manager = new GameManager(4, actuator);
});