-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 885 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
<!Doctype html>
<html>
<head>
<title>Canvas Game!</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="game" width="1000" height="520"></canvas>
<div id="gamepad-status"></div>
<script src="lib/marmottajax/marmottajax.min.js"></script>
<script src="js/resources.js"></script>
<script src="js/controller.js"></script>
<script src="js/levelLoader.js"></script>
<script src="js/game.js"></script>
<script src="js/stage.js"></script>
<script src="js/sprite.js"></script>
<script src="js/item.js"></script>
<script src="js/player.js"></script>
<script src="js/platform.js"></script>
<script src="js/pickup.js"></script>
<script src="js/hud.js"></script>
<script src="js/enemy.js"></script>
<script src="js/path.js"></script>
<script src="js/particle.js"></script>
<script src="index.js"></script>
</body>
</html>