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