Add: ITQ simulator basic files

This commit is contained in:
2019-01-23 11:10:29 +09:00
parent fe70847427
commit 5454a4993e
8 changed files with 177 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
/////////////////////////////
// Main game
var CONTENT_ID = "ITQ Simulator";
var game = new Phaser.Game(
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
Phaser.CANVAS, CONTENT_ID,
this, false, false
);
game.state.add('Loading', Loading);
game.state.add('Simulator', Simulator);
game.state.start('Loading');