-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div id="container"></div>
<div class='gui'>
<input type="range" min="0" max="50" value="1" id="game_speed"/>
<input type="checkbox" id="rendering" checked>
<div id="info">
</div>
</div>
<div id="log"></div>
</div>
<div id="chartContainer" style="height: 370px; width: 500px;"></div>
<script src="canvasjs.min.js"></script>
<script src="socket.io/socket.io.js"></script>
<!-- <script src="functions.js"></script> -->
<script src="Canvas.js"></script>
<script src="Gui.js"></script>
<!-- <script src="Engine.js"></script> -->
<!-- <script src="Food.js"></script> -->
<!-- <script src="Cell.js"></script> -->
<script src="script.js"></script>
</body>
</html>