-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (27 loc) · 825 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
35
36
37
38
<html>
<head>
<title>sexy time</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" media="screen">
</head>
<body>
<div id="wrapper">
<div id="game">
<canvas id="gameCanvas" width="640" height="480">
This text is displayed if your browser does not support HTML5.
</canvas>
<script src="js/Camera.js"></script>
<script src="js/keyboard.js"></script>
<script src="js/Vector2.js"></script>
<script src="js/howler.js"></script>
<script src="js/particlesystem.js"></script>
<script src ="level1.json"></script>
<script src="js/Enemy.js"></script>
<script src="js/player.js"></script>
<script src="js/Sprite.js"></script>
<script src="js/main.js"></script>
</div>
<div id="links">
</div>
</div>
</body>
</html>