Add: Result

This commit is contained in:
2018-05-15 17:22:01 +09:00
parent 375e7b057a
commit 4ed60df97b
4 changed files with 271 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
/////////////////////////////
// Main game
const CONTENT_ID = "Result";
let game = new Phaser.Game(
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
Phaser.CANVAS, CONTENT_ID
);
game.state.add('Result', Result);
game.state.start('Result');