-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·38 lines (38 loc) · 1.36 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
<html>
<!-- version 0.1: data more structured, but no communication with api yet. -->
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="https://cdn.socket.io/socket.io-1.3.4.js"></script>
<script src="../script/state.js"></script>
<script src="../script/instruction.js"></script>
<script src="../script/api.js"></script>
<script src="../script/game.js"></script>
<script src="../script/displaySetting.js"></script>
<script src="../script/viewport.js"></script>
<script src="../script/square.js"></script>
<script src="../script/map.js"></script>
<script src="../script/layer.js"></script>
<script src="../script/graphic.js"></script>
<script src="../script/transformation.js"></script>
<script src="../script/path.js"></script>
<script src="../script/pathSetting.js"></script>
<script src="../script/picture.js"></script>
<script src="../script/curve.js"></script>
<link rel="stylesheet" type="text/css" href="../css/display.css">
<script>
$(function () {
window.api = new Api();
window.state = new State();
window.state.addData(window.api.get());
window.state.render();
});
</script>
</head>
<body>
<div id='content' style='text-align: center'>
<div class='background'>
</div>
</div>
</body>
</html>