summaryrefslogtreecommitdiff
path: root/game/states/menu.js
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2014-09-21 08:00:06 +0200
committerJustin Worthe <justin.worthe@gmail.com>2014-09-21 08:00:06 +0200
commit373e5f472f829714939103617cfe14e98d981b18 (patch)
tree4fa9bf8609537bad5b12a7e51915f4a07dee2873 /game/states/menu.js
parent8c70582bf01821f8a71910013372e3b12f06cdd3 (diff)
Removed unused states and templating of main.js
Diffstat (limited to 'game/states/menu.js')
-rw-r--r--game/states/menu.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/game/states/menu.js b/game/states/menu.js
deleted file mode 100644
index c5a609f..0000000
--- a/game/states/menu.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-
-function Menu() {}
-
-Menu.prototype = {
- preload: function() {
- },
- create: function() {
- },
- update: function() {
- }
-};
-
-module.exports = Menu;