forked from Golen87/Coyote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 985 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Coyote</title>
<meta charset="utf-8">
<link href="lib/style.css" type="text/css" rel="stylesheet" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" href="favicon.ico">
<!-- Phaser -->
<script src="//cdn.jsdelivr.net/phaser/2.6.2/phaser.min.js"></script>
<script src="lib/phaser-state-transition.min.js"></script>
<!-- planck -->
<!-- <script src='lib/planck-with-testbed.min.js'></script> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/planck-with-testbed.js"></script>
<!-- Script includes -->
<script src="js/Boot.js"></script>
<script src="js/Preload.js"></script>
<script src="js/MainMenu.js"></script>
<script src="js/AudioManager.js"></script>
<script src="js/game/Background.js"></script>
<script src="js/game/Terrain.js"></script>
<script src="js/game/Player.js"></script>
<script src="js/game/Game.js"></script>
<script src="js/main.js"></script>
</head>
<body>
</body>
</html>