-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (39 loc) · 1.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Goatie Simulator</title>
<meta name="description" content="Another goat community simulator">
<meta name="author" content="ToGhent">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="overlays">
<canvas id="liveGoatsChart" width="300px" height="100px"></canvas>
<label for="simulatorSpeed">Speed:</label>
<input id="simulatorSpeed" type="number"/>
</div>
<canvas id="board" width="0" height="0"></canvas>
<!-- Vendor -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script>
<!-- Models -->
<script src="js/models/cell.js"></script>
<script src="js/models/goat.js"></script>
<script src="js/models/world.js"></script>
<script src="js/models/worldBuilder.js"></script>
<!-- Views -->
<script src="js/views/view.js"></script>
<!-- Charts -->
<script src="js/chart.js"></script>
<!-- Tickers -->
<script src="js/tickers/agentsTicker.js"></script>
<script src="js/tickers/timeTicker.js"></script>
<!-- Simulator -->
<script src="js/config.js"></script>
<script src="js/script.js"></script>
</body>
</html>