forked from devops001/samsara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.53 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>samsara</title>
<link rel="stylesheet" href="style.css"/>
<script src="app.js"></script>
<script src="keyboard.js"></script>
<script src="keystore.js"></script>
<script src="helpers.js"></script>
<script src="entity.js"></script>
<script src="room.js"></script>
<script src="mob.js"></script>
<script src="action.js"></script>
<script src="mixins.js"></script>
<script src="repository.js"></script>
<script src="mobRepository.js"></script>
<script src="actionRepository.js"></script>
<script src="roomRepository.js"></script>
<script src="screens.js"></script>
<script src="messages.js"></script>
<script src="actionCommands.js"></script>
<script src="crafting.js"></script>
<script src="itemRepository.js"></script>
<script src="imageFilters.js"></script>
<script src="animations.js"></script>
</head>
<body onload="App.init();">
<div id="screen">
<table id="layout">
<tr>
<td><canvas id="canvas" width="800" height="300"></canvas></td>
<td rowspan="2"><div id="context"></div>
</tr>
<tr><td width="800" height="150"><div id="details"></div></td></tr>
<tr><td colspan="2"><div id="actions"></div></td></tr>
<tr><td colspan="2"><div id="log"></div></td></tr>
<tr><td colspan="2"><input id="input" type="text" placeholder="input"/></td></tr>
</table>
<div id="popup"></div>',
</div><!-- screen -->
</body>
</html>