-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (24 loc) · 960 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
<!DOCTYPE html>
<html>
<title>Theme Park Simulation</title>
<head>
<!-- local d3 library -->
<!-- <script src="../lib/d3.min.js"></script>
<script src="../lib/d3-shape.min.js"></script> -->
<!-- online d3 library -->
<!-- <script src="https://d3js.org/d3.v6.min.js"></script> -->
<!-- <script src="https://d3js.org/d3-shape.v2.min.js"></script> -->
<!-- local p5 library (why use d3 when you can have a nicer update loop) -->
<script src="lib/p5.min.js"></script>
<!-- online p5 library -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script> -->
<link rel="stylesheet" href="css/style.css" />
<script type="text/javascript" src="src/utility.js"></script>
<script type="text/javascript" src="src/map.js"></script>
<script type="text/javascript" src="src/agent.js"></script>
<script type="text/javascript" src="src/main.js"></script>
</head>
<body>
<h1>Simulator</h1>
</body>
</html>