-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (48 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>R-Type</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<iframe id="stream" src="sounds/backgroundMusic.mp3" frameborder="0" width="0" height="0"></iframe>
</head>
<body>
<canvas id="myCanvas" width="900" height="720"
style="border: 1px solid black;
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;">
Sorry, but your browser does not support the HTML5 canvas tag.
</canvas>
<div id="output"></div>
<script src="globals.js"></script>
<script src="consts.js"></script>
<script src="util.js"></script>
<script src="keys.js"></script>
<script src="handleMouse.js"></script>
<script src="spatialManager.js"></script>
<script src="entityManager.js"></script>
<script src="Sprite.js"></script>
<script src="Entity.js"></script>
<script src="Enemy1.js"></script>
<script src="Enemy1Bullet.js"></script>
<script src="Enemy2.js"></script>
<script src="Boss.js"></script>
<script src="BossBullet.js"></script>
<script src="Hud.js"></script>
<script src="Powerup.js"></script>
<script src="Bullet.js"></script>
<script src="Ship.js"></script>
<script src="environmentManager.js"></script>
<script src="Background.js"></script>
<script src="Wall.js"></script>
<script src="SpaceDust.js"></script>
<script src="update.js"></script>
<script src="render.js"></script>
<script src="imagesPreload.js"></script>
<script src="main.js"></script>
<script src="R-Type.js"></script>
</body>
</html>