-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (35 loc) · 1.1 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
<html>
<head>
<title>Offline Pizza</title>
<meta name="viewport" content="width=device-width, initial-scale=1.01,maximum-scale=1.0,user-scalable=0,minimal-ui">
<meta name="apple-mobile-web-app-title" content="Offline Pizza">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="favicon.png" />
<style>
html, body {overflow-x: hidden; }
body {width: 100%;background-color: black;}
* {
-webkit-touch-callout:none;
-webkit-text-size-adjust:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-select:none;
}
canvas {
image-rendering: optimizeSpeed;
margin: 0 auto;
}
</style>
</head>
<body marginwidth="0" marginheight="0"></body>
<script src="engine.js"></script>
<script src="collider.js"></script>
<script src="camera.js"></script>
<script src="player.js"></script>
<script src="house.js"></script>
<script src="minimap.js"></script>
<script src="sounds.js"></script>
<script src="gametitle.js"></script>
<script src="gamemanager.js"></script>
<script src="game.js"></script>
</html>