blob: 5a073ed1fb0c5b5cb45bdbdbbbc7b895a7e9f8b5 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script defer type="module" src="./main.js"></script>
<link rel="stylesheet" href="./screen.css" />
</head>
<body>
<img class="background" src="./ui.png" />
<label for="todo-list">To do:</label>
<ul id="todo-list"></ul>
<crafting-grid></crafting-grid>
<crafting-output></crafting-output>
<inventory-grid></inventory-grid>
<follow-cursor>
<item-tooltip></item-tooltip>
<grabbed-stack></grabbed-stack>
</follow-cursor>
<audio src="./sfx/small-ding.ogg" id="small-ding" preload="auto"></audio>
<audio src="./sfx/big-ding.ogg" id="big-ding" preload="auto"></audio>
<audio src="./sfx/oof.ogg" id="oof" preload="auto"></audio>
</body>
</html>
|