Close #58 , In Progress #57: Start screen exists but credits button doesn't do anything yet. Started Game Over screen but it doesn't show yet (needs #11 and #57)

This commit is contained in:
2014-07-12 22:02:30 -07:00
parent 152414550c
commit 6d5c49a370
5 changed files with 58 additions and 10 deletions

View File

@@ -7,10 +7,8 @@ var game = new Phaser.Game(SCREEN_WIDTH, SCREEN_HEIGHT, Phaser.AUTO, 'uiGameDisp
game.state.add('boot', Boot, false);
game.state.add('preloader', Preloader, false);
game.state.add('game', GameState, false);
game.state.add('startscreen', StartScreen, false);
game.state.add('endscreen', EndScreen, false);
game.state.start('boot');