-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FUEL RUN</title>
<!-- <script src="https://cdn.jsdelivr.net/npm/p5@1.0.0/lib/p5.js"></script> -->
<!-- support the other text fonts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
<!-- https://cdnjs.com/libraries/p5.js -->
<!-- https://p5js.org/reference/#/p5.SoundFile -->
<script src="https://unpkg.com/p5.collide2d"></script>
<!-- https://github.com/bmoren/p5.collide2D#colliderectrect -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<script src="scripts/background.js"></script>
<script src="scripts/button.js"></script>
<script src="scripts/settings.js"></script>
<script src="scripts/functions.js"></script>
<script src="scripts/object.js"></script>
<script src="scripts/asteroid.js"></script>
<script src="scripts/spaceship.js"></script>
<script src="scripts/fuel.js"></script>
<script src="scripts/game.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>