-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex-src.html
37 lines (37 loc) · 1.12 KB
/
index-src.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
30
31
32
33
34
35
36
37
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>space boi</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="bg"></div>
<div id="kiosk-walls">
<div id="kiosk-window-frame">
<div id="kiosk-window">
<img id="visitor">
</div>
</div>
</div>
<div id="text-box"></div>
<div id="back-room">
<h2>Objects you have:</h2>
<ul id="shelves"></ul>
<a id="back-room-exit" class="back-room-door" href="#">Return to customer</a>
</div>
<a id="back-room-entrance" class="back-room-door" href="#">Inventory</a>
<div id="properties">
<div id="property-container">
<h2>Ask about the object's:</h2>
<ul id="property-list"></ul>
</div>
</div>
<script id="objects" type="application/json">{}</script>
<script id="queriable-object-properties" type="application/json">{}</script>
<script id="personas" type="application/json">{}</script>
<script id="loops" type="application/json">[]</script>
<script src="audio.js"></script>
<script src="game.js"></script>
</body>
</html>