-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (45 loc) · 1.29 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Partyblitz</title>
<style>
html {
/* Disable pull-to-refresh */
overscroll-behavior: none;
}
body {
background-color: black;
}
input {
font-family: "Grandstander";
border: none;
outline: none;
position: absolute;
}
#canvas {
position: absolute;
top: 0;
left: 0;
}
</style>
<script>
const states = {};
const overlays = {};
</script>
<script src="scripts/overlays/reconnecting.js" defer></script>
<script src="scripts/states/errorScreen.js" defer></script>
<script src="scripts/states/loadingScreen.js" defer></script>
<script src="scripts/states/mainMenu.js" defer></script>
<script src="scripts/assets.js" defer></script>
<script src="scripts/gui.js" defer></script>
<script src="scripts/locale.js" defer></script>
<script src="scripts/rendering.js" defer></script>
<script src="scripts/server.js" defer></script>
<script src="scripts/main.js" defer></script>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
</html>