summaryrefslogtreecommitdiff
path: root/game/states/gameover.js
blob: 7ffb7edb619695332b252b45fbb3d97fb6e9d0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

function GameOver() {}

GameOver.prototype = {
  preload: function () {
  },
  create: function () {
  },
  update: function () {
  }
};

module.exports = GameOver;