Add: sessionStorage, menu_app

This commit is contained in:
2018-05-06 14:33:20 +09:00
parent 8236002b7c
commit de600603da
7 changed files with 72 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
/////////////////////////////
// Main game
const CONTENT_ID = "Menu";
var game = new Phaser.Game(
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
Phaser.CANVAS, CONTENT_ID
);
game.state.add('MenuApp', MenuApp);
game.state.start('MenuApp');