summaryrefslogtreecommitdiff
path: root/game/states/menu.js
diff options
context:
space:
mode:
Diffstat (limited to 'game/states/menu.js')
-rw-r--r--game/states/menu.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/game/states/menu.js b/game/states/menu.js
new file mode 100644
index 0000000..c5a609f
--- /dev/null
+++ b/game/states/menu.js
@@ -0,0 +1,14 @@
+'use strict';
+
+function Menu() {}
+
+Menu.prototype = {
+ preload: function() {
+ },
+ create: function() {
+ },
+ update: function() {
+ }
+};
+
+module.exports = Menu;