-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
33 lines (33 loc) · 1.16 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet"/>
<link href="resources/c3.min.css" rel="stylesheet"/>
</head>
<body>
<a href="speed.html" id="alternative-link">optimize for speed</a>
<div id="container">
<div id="p2-container"></div>
<div id="gui-parent">
<div id="distance-graph-container" class="graph-container"></div>
<div id="terrain-graph-container" class="graph-container"></div>
</div>
</div>
<script src="resources/p2.min.js"></script>
<script src="resources/p2.renderer.js"></script>
<script src="resources/d3.v3.min.js" charset="utf-8"></script>
<script src="resources/c3.min.js"></script>
<script src="constants.js"></script>
<script src="color-utils.js"></script>
<script src="NumberInput.js"></script>
<script src="GUI.js"></script>
<script src="Terrain.js"></script>
<script src="Population.js"></script>
<script src="KlannGenome.js"></script>
<script src="KlannLinkage.js"></script>
<script src="RobotGenome.js"></script>
<script src="Robot.js"></script>
<script src="game.js"></script>
</body>
</html>