-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.14 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Revenge of the Baguette By Lyxilion</title>
<script src="js/phaser.js"></script>
<script src="js/gj-js-api-min.js"></script>
<script src="src/boot.js"></script>
<script src="src/gametitle.js"></script>
<script src="src/gamewin.js"></script>
<script src="src/gameover.js"></script>
<script src="src/preload.js"></script>
<script src="src/text.js"></script>
<script src="src/tutorial.js"></script>
<script src="src/disclaimer.js"></script>
<script src="src/thegame.js"></script>
<style>
body{margin:0}
</style>
<script>
var game = new Phaser.Game(1024, 728, Phaser.AUTTO, "game");
(function() {
game.state.add("Boot",boot);
game.state.add("Preload",preload);
game.state.add("GameTitle",gameTitle);
game.state.add("GameWin",gameWin);
game.state.add("Text",text);
game.state.add("Tutorial",tutorial);
game.state.add("Disclaimer",disclaimer);
game.state.add("GameOver",gameOver);
game.state.add("TheGame",theGame);
game.state.start("Boot");
})();
</script>
</head>
<body>
</body>
</html>