diff --git a/js/DisplayController.js b/js/DisplayController.js index 7d10e59..38ea739 100644 --- a/js/DisplayController.js +++ b/js/DisplayController.js @@ -2,6 +2,6 @@ var DisplayController = function() { this.draw = function() { - + }; }; \ No newline at end of file diff --git a/js/Wyrian.js b/js/Wyrian.js new file mode 100644 index 0000000..9089c90 --- /dev/null +++ b/js/Wyrian.js @@ -0,0 +1,9 @@ +var Wyrian = function() { + // do basic initializations + + var inputController = new InputController(), + displayController = new DisplayController(), + gameController = new GameController(inputController, displayController); + + gameController.start(); +}(); \ No newline at end of file