rename
This commit is contained in:
parent
641840926c
commit
caac063806
2 changed files with 10 additions and 1 deletions
|
@ -2,6 +2,6 @@ var DisplayController = function() {
|
|||
|
||||
|
||||
this.draw = function() {
|
||||
|
||||
|
||||
};
|
||||
};
|
9
js/Wyrian.js
Normal file
9
js/Wyrian.js
Normal 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();
|
||||
}();
|
Loading…
Reference in a new issue