-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsymbolic.html
43 lines (34 loc) · 1.16 KB
/
symbolic.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Screener-to-phaser Port</title>
<script src="phaser.min.js"></script>
<script src="logger.js"></script>
<script src="styles.js"></script>
<script src="stimuli.js"></script>
<script src="clock.js"></script>
<script src="difficulty.js"></script>
<script src="practice.js"></script>
<script src="randomizer.js"></script>
<script src="Boot.js"></script>
<script src="Preloader.js"></script>
<script src="instructions.js"></script>
<script src="circles.js"></script>
<script src="common.js"></script>
<script src="symbolic_comparison.js"></script>
</head>
<script type="text/javascript">
window.onload = function() {
//create the game and the game states
var game = new Phaser.Game(1024, 768, Phaser.CANVAS, 'gameContainer')
game.state.add('Boot', Game.Boot)
game.state.add('Preloader', Game.Preloader)
game.state.add('Run', Game.Run)
// Now start the Boot state.
game.state.start('Boot')
}
</script>
<body>
</body>
</html>