-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (25 loc) · 829 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prototype Game</title>
</head>
<body>
<div id="settings">
<label for="debug">Debug</label>
<select name="debug" id="debug">
<option value="false" selected>Disable</option>
<option value="true">Enable</option>
</select>
<label for="raycasting" class="ml-2">Raycasting</label>
<select name="raycasting" id="raycasting">
<option value="DISABLED">Disable</option>
<option value="MAIN_THREAD" selected>Main Thread</option>
<option value="WEB_WORKER">Web Worker</option>
</select>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>