From 9797d7281518bcac903627596290d34f0161c879 Mon Sep 17 00:00:00 2001 From: Arian Glander Date: Sat, 12 Feb 2011 00:59:40 +0100 Subject: [PATCH] testing --- index.html | 2 +- js/wyrian.js | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 js/wyrian.js diff --git a/index.html b/index.html index 6165da7..b708882 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,6 @@
- + \ No newline at end of file diff --git a/js/wyrian.js b/js/wyrian.js new file mode 100644 index 0000000..e2f2bc3 --- /dev/null +++ b/js/wyrian.js @@ -0,0 +1,21 @@ +var DisplayController = function() { + +}; + +var InputController = function() { + +}; + +var GameController = function() { + +}; + + +var Wyrian = function() { + // do basic initializations + + var inputController = new InputController(), + displayController = new DisplayController(), + gameController = new GameController(inputController, displayController); + +}(); \ No newline at end of file