blob: d4443abfc3004ff057f2ec3f9c95b8707d8a24e0 (
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
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<html>
<head>
<title>Lost</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lost.css">
</head>
<body>
<div id="ui-box">
<div id="maze-box"></div>
<div id="button-box"></div>
</div>
<div id="floor-box"></div>
<div class="float-clear"></div>
<div id="editor-cont">
<p>Provide a number below for each dimension in the new maze. The numbers are the size of each dimension. Entering "10, 3" will create a maze that is 10 wide and 3 tall. Entering "5, 5, 5, 5, 5" will create a 5 dimensional maze, every dimension will be 5 wide.</p>
<div id="editor-box"></div>
</div>
<div id="share-box"></div>
<script src="lost.js"></script>
<script type="text/javascript">
lostInit({
'render': {
'name': 'RenderCanvas2D',
'params': {
'maze': 'maze-box',
'buttons': 'button-box',
'readout': 'floor-box'
}
},
'editor': 'editor-box',
'share': 'share-box'
});
</script>
</body>
</html>
|