summaryrefslogtreecommitdiff
path: root/game/states/play.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/play.js
parent883a678635900b80cd9fc99467cbb31e125a007c (diff)
Scaffolded Phaser template
Diffstat (limited to 'game/states/play.js')
-rw-r--r--game/states/play.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/game/states/play.js b/game/states/play.js
new file mode 100644
index 0000000..1e9e3e1
--- /dev/null
+++ b/game/states/play.js
@@ -0,0 +1,14 @@
+'use strict';
+
+function Play() {}
+
+Play.prototype = {
+ preload: function() {
+ },
+ create: function() {
+ },
+ update: function() {
+ }
+};
+
+module.exports = Play;