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/gameover.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 game/states/gameover.js (limited to 'game/states/gameover.js') 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; -- cgit v1.2.3