summaryrefslogtreecommitdiff
path: root/game/states/gameover.js
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2014-04-21 08:43:46 +0200
committerJustin Worthe <justin.worthe@gmail.com>2014-04-21 08:43:46 +0200
commit1b700b59d6f759e1504c94eb0d378c61b7242da3 (patch)
tree7b3889e6ae1d22f4551cf56157a3cdeebe31d9c3 /game/states/gameover.js
parent883a678635900b80cd9fc99467cbb31e125a007c (diff)
Scaffolded Phaser template
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;