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

function Play() {}

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

module.exports = Play;