-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1023 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample code</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.5.4/pixi.js"></script>
<link rel="stylesheet" type="text/css" href="global.css">
</head>
<body>
<div id="canvasZone">
</div>
<script src="Vector.js"></script>
<script src="Ant.js"></script>
<script src="World.js"></script>
<script src="Game.js"></script>
<script src="UI.js"></script>
<script src="Simulation.js"></script>
<div id="controls">
<button onclick="localStorage.clear()">Erase localStorage</button>
<button onclick="graph.getBestSolution()">Log results</button>
</div>
<script>
//algorithm();
</script>
<script type="text/javascript">
requestAnimationFrame(animate);
</script>
</body>
</html>