This commit is contained in:
Arian Glander 2011-02-12 01:48:30 +01:00
parent 641840926c
commit caac063806
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,6 @@ var DisplayController = function() {
this.draw = function() {
};
};

9
js/Wyrian.js Normal file
View file

@ -0,0 +1,9 @@
var Wyrian = function() {
// do basic initializations
var inputController = new InputController(),
displayController = new DisplayController(),
gameController = new GameController(inputController, displayController);
gameController.start();
}();