From 1b700b59d6f759e1504c94eb0d378c61b7242da3 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 21 Apr 2014 08:43:46 +0200 Subject: Scaffolded Phaser template --- game/states/play.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 game/states/play.js (limited to 'game/states/play.js') 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; -- cgit v1.2.3