Breaking out source into separate files

Get rid of backup files

Refactored source out into multiple files
This commit is contained in:
2014-06-22 09:58:25 -07:00
parent 991db6f3e4
commit adab130d17
13 changed files with 2214 additions and 359 deletions

16
moonlight/src/main.js Normal file
View File

@@ -0,0 +1,16 @@
var pathfinder = null;
var pathfinder_grid = null;
var game = new Phaser.Game(640, 480, Phaser.AUTO, '');
game.state.add('boot', Boot, false);
game.state.add('preloader', Preloader, false);
game.state.add('game', GameState, false);
game.state.start('boot');