-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrogue.html
More file actions
53 lines (46 loc) · 1.61 KB
/
Copy pathrogue.html
File metadata and controls
53 lines (46 loc) · 1.61 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
<!doctype html>
<html lang="en_US">
<head>
<!-- Info -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rogue</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/rogue.css" />
<!-- Import map -->
<script type="importmap">
{
"imports": {
"three": "./js/libs/threejs/three.module.min.js",
"three/addons/": "./js/libs/threejs/jsm/",
"components/": "./js/rogue/components/"
}
}
</script>
<!-- More Info -->
<meta name="description" content="Simple roguelike!" />
<meta property="og:title" content="Rogue" />
<meta property="og:type" content="game" />
<meta property="og:url" content="https://ch1tt0.me/rogue.html" />
<meta property="og:image" content="/icon.png" />
<meta property="og:image:alt" content="Chitos Head" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.png" type="image/png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#fafafa" />
</head>
<body>
<div id="infoPanel">
<div id="fpsCounterContainer">FPS: <span id="fpsCounter"></span></div>
<div id="positionDisplayContainer">
<span id="positionDisplayX"></span>
<span id="positionDisplayY"></span>
<span id="positionDisplayZ"></span>
</div>
</div>
<!-- JavaScript -->
<script type="module" src="/js/rogue/main.js"></script>
<noscript>Enable JavaScript!</noscript>
</body>
</html>