about summary refs log tree commit diff stats
path: root/html/rogue/index.html
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-12-24 14:36:12 -0500
committerelioat <elioat@tilde.institute>2024-12-24 14:36:12 -0500
commit1bbd9f9fe02e388f135f07d3cf9e66a5dcbbadfb (patch)
tree76656e73d8c7748a934f27abf908d282fa8bad51 /html/rogue/index.html
parent23a9df9793a3f1cc0dbdfc677254df56c33501f4 (diff)
downloadtour-1bbd9f9fe02e388f135f07d3cf9e66a5dcbbadfb.tar.gz
*
Diffstat (limited to 'html/rogue/index.html')
-rw-r--r--html/rogue/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/html/rogue/index.html b/html/rogue/index.html
index e69de29..e564517 100644
--- a/html/rogue/index.html
+++ b/html/rogue/index.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Rogue</title>
+    <style>
+        body, html {
+            margin: 0;
+            padding: 0;
+            width: 100%;
+            height: 100%;
+            overflow: hidden;
+        }
+        canvas {
+            display: block;
+        }
+    </style>
+</head>
+<body>
+    <canvas id="gameCanvas"></canvas>
+    <script src="js/world.js"></script>
+    <script src="js/player.js"></script>
+    <script src="js/camera.js"></script>
+    <script src="js/rogue.js"></script>
+</body>
+</html>