Add: sessionStorage, menu_app
This commit is contained in:
@@ -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');
|
||||
@@ -1,7 +1,7 @@
|
||||
/////////////////////////////
|
||||
// Menu
|
||||
// MenuApp
|
||||
|
||||
var Menu = {
|
||||
var MenuApp = {
|
||||
|
||||
create: function() {
|
||||
this.stageButtonArray = [];
|
||||
|
||||
Reference in New Issue
Block a user