Add: typing test for word, sentence

This commit is contained in:
2018-06-07 11:07:53 +09:00
parent 670d48cbc7
commit 70ce70a148
27 changed files with 2011 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
/////////////////////////////
// Main game
const CONTENT_ID = "Typing Test";
let 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.start('Loading');
game.state.add('Test', Test);
// game.state.add('Menu', Menu);