Add: LicenseTimer - html, js

This commit is contained in:
2018-12-07 23:08:32 +09:00
parent 5b58e5faf5
commit b72ff11b0e
6 changed files with 595 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
/////////////////////////////
// Main game
var CONTENT_ID = "LicenseTimer";
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('Login', Login);
game.state.add('LicenseTimer', LicenseTimer);
game.state.start('Loading');