-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.38 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nearly a real game</title>
<!-- External JS libs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/1.1.25/howler.min.js"></script>
<!-- CSS files for your game -->
<link rel="stylesheet" href="css/game.css">
<!-- Include here all game JS files-->
<script src="js/game.js"></script>
<script src="js/sprite.js"></script>
<script src="js/assets.js"></script>
<script src="js/ball.js"></script>
<script src="js/timeBasedAnim.js"></script>
<script src="js/fps.js"></script>
<script src="js/listeners.js"></script>
<script src="js/collisions.js"></script>
<script src="js/particles.js"></script>
</head>
<body>
<canvas id="myCanvas" width="400" height="400"></canvas>
<details>
<summary>Credits</summary>
<p>Soundtrack by William Graham</p>
<p>Laser effects downloaded from
<a href="http://www.freesound.org/people/bubaproducer/">Freesound</a> licensed under the
<a href="https://creativecommons.org/licenses/by/3.0/">Attribution License.</a><p>
<p><a href="http://www.freepik.com/free-photos-vectors/background" target="_blank">Background vector designed by Freepik</a><p>
<p><a href="http://www.gameart2d.com/" target="_blank">Robot sprite from Gameart2d</a></p>
</details>
</body>
</html>