summaryrefslogtreecommitdiff
path: root/game/main.js
blob: 16071ff76d3940b7d2caa683df4c495e589e6409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

window.onload = function () {
  var game = new Phaser.Game(1750, 1100, Phaser.AUTO, 'interactive-pacbot');

  game.state.add('boot', require('./states/boot'));
  game.state.add('load', require('./states/load'));
  game.state.add('play', require('./states/play'));
  

  game.state.start('boot');
};