-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (54 loc) · 1.87 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Down the Drain</title>
<link rel="shortcut icon" id="favicon" />
<link rel="stylesheet" type="text/css" href="game.css">
</head>
<body>
<div id="wrap">
<div id="status">
<span style="width:90px;"> Score:</span>
<span style="width:210px;" id="score">0 of 230</span>
<span style="width:300px;text-align:center;" id="region">In the Sewers</span>
<span style="width:300px;text-align:right;" id="time"> </span>
</div>
<div id="screen">
<div class="drain" style="left:85px;"></div>
<div class="drain" style="left:430px;"></div>
<div class="drain" style="left:775px;"></div>
<div class="door" style="left:243px;"></div>
<div class="door" style="left:620px;"></div>
<div id="sides"></div>
<div id="bricks"></div>
<canvas id="wall" width="960" height="260"></canvas>
<div id="edge"></div>
<div id="water"></div>
</div>
<div id="sentence">Walk to</div>
<div id="controls">
<div id="commands">
<span>Open</span><span>Pick up</span><span>Use</span><span>Put on</span>
<span>Close</span><span>Look at</span><span>Push</span><span>Take off</span>
<span>Give</span><span>Talk to</span><span>Pull</span><span>Eat</span>
</div>
<div id="arrows">
<span id="up">⇧</span>
<span id="down">⇩</span>
</div>
<div id="items">
<div id="itemlist">
</div>
</div>
</div>
</div>
<script>var $ = {};</script>
<script src="./util.js"></script>
<script src="./logic.js"></script>
<script src="./obj.js"></script>
<script src="./sprite.js"></script>
<script src="./actor.js"></script>
<script src="./ego.js"></script>
<script src="./game.js"></script>
</body>
</html>