-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (30 loc) · 1.04 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
<!DOCTYPE html>
<head>
<title>Trashy Dove</title>
<link rel="shortcut icon" type="image/png" href="./assets/icon.png" />
<!--Disable double-tap to zoom in order to remove touch delay-->
<meta name="viewport" content="width=device-width" charset="utf-8">
</head>
<style type="text/css">
html,
body {
margin: 0;
height: 100%;
overflow: hidden
}
</style>
<body style="margin: 0; overflow: hidden; height:100vh; width:100vw;">
<script src="./dep/p5.js"></script>
<script src="./dep/p5.sound.js"></script>
<script src="./scr/sprite.js"></script>
<script src="./scr/screen.js"></script>
<script src="./scr/bird.js"></script>
<script src="./scr/tube.js"></script>
<script src="./scr/cloud.js"></script>
<script src="./scr/components/gui.js"></script>
<script src="./scr/screens/test.js"></script>
<script src="./scr/screens/backdrop.js"></script>
<script src="./scr/screens/menu.js"></script>
<script src="./scr/screens/game.js"></script>
<script src="./scr/sketch.js"></script>
</body>