-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (25 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Crypt</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="styles/style.css"/>
<script type="text/javascript" src="js/lib/three.min.js"></script>
<script type="text/javascript" src="js/lib/orbit_controls.js"></script>
<script type="text/javascript" src="js/lib/lodash.min.js"></script>
<script type="text/javascript" src="js/crypt.js"></script>
<script type="text/javascript" src="js/room.js"></script>
<script type="text/javascript" src="js/prefab_factory.js"></script>
<script type="text/javascript" src="js/fps_camera_controls.js"></script>
</head>
<body onload="init()">
<div id="main" class="main">
</div>
<div class="about">
<img src="res/cheerful.png" alt="" class="cheerful" /><br/>
<strong>:: Random Dungeon Generator ::</strong><br/>
Test version 0.0.4, Code by Dhr. Baksteen 2014-2015
</div>
</body>
</html>