-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 730 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 730 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>WebCraft</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/lib/gl-matrix-min.js"></script>
<script src="js/lib/simplex-noise.js"></script>
<script src="js/utils.js"></script>
<script src="js/assets.js"></script>
<script src="js/chunk.js"></script>
<script src="js/shader.js"></script>
<script src="js/camera.js"></script>
<script src="js/input.js"></script>
<script src="js/world.js"></script>
<script src="js/block.js"></script>
<script src="js/world-renderer.js"></script>
<script src="js/shadows.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<canvas id="main"></canvas>
</body>
</html>