forked from mikestonecodes/Endless-City
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (20 loc) · 844 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Endless City</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="favicon.ico" type="image/gif" sizes="16x16">
</head>
<body>
<canvas></canvas>
</body>
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script type="text/javascript" src="js/three.js"></script>
<script type="text/javascript" src="js/MapControls.js"></script>
<script type="text/javascript" src="js/inflate.min.js"></script>
<script type="text/javascript" src="js/stats.min.js"></script>
<script type="text/javascript" src="js/GLTFLoader.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</html>