From caac0638068ac1edece6ff19d7ba2f88abcd9ccf Mon Sep 17 00:00:00 2001 From: Arian Glander Date: Sat, 12 Feb 2011 01:48:30 +0100 Subject: [PATCH] rename --- js/DisplayController.js | 2 +- js/Wyrian.js | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 js/Wyrian.js 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