-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 2.14 KB
/
index.html
File metadata and controls
58 lines (57 loc) · 2.14 KB
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
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<title>Headless Panic</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
html{
background-color: black;
}
body {
font-family: "Ubuntu Mono", monospace, sans-serif;
}
canvas {
width: 79%;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YOUR-KEY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// Maps 'dimension1' to 'death'.
gtag('config', 'G-YOUR-KEY', {
'custom_map': {'dimension1': 'death'}
});
</script>
</head>
<body">
<script src="./rot/rot-js/dist/rot.min.js"></script>
<script src="./sprintf.min.js"></script>
<script src="./main.js"></script>
<script src="./utilities.js"></script>
<script src="./geometry.js"></script>
<script src="./colors.js"></script>
<script src="./effect.js"></script>
<script src="./screens.js"></script>
<script src="./glyph.js"></script>
<script src="./dynamicglyph.js"></script>
<script src="./tile.js"></script>
<script src="./tiles.js"></script>
<script src="./dynamictile.js"></script>
<script src="./gas.js"></script>
<script src="./prefabs.js"></script>
<script src="./builder.js"></script>
<script src="./map.js"></script>
<script src="./entity.js"></script>
<script src="./entitymixins.js"></script>
<script src="./item.js"></script>
<script src="./itemmixins.js"></script>
<script src="./repository.js"></script>
<script src="./gasses.js"></script>
<script src="./entities.js"></script>
<script src="./items.js"></script>
<script src="./dynamictiles.js"></script>
</body>
</html>