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

function Boot() {
}

Boot.prototype = {
  preload: function() {
    this.load.image('preloader', 'assets/images/preloader.gif');
  },
  create: function() {
    this.game.state.start('load');
  }
};

module.exports = Boot;