-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 842 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<script src="lib/p5.js"></script>
<script src="behaviours/individual-steering-behaviours.js"></script>
<script src="critters/Virus.js"></script>
<script src="critters/HumbleCell.js"></script>
<script src="critters/PassiveCell.js"></script>
<script src="critters/critterFunctions.js"></script>
<script src="behaviours/checkBounds.js"></script>
<script src="behaviours/group-steering-behaviours.js"></script>
<script src="optimizations/optimizations.js"></script>
<script src="optimizations/Qtree.js"></script>
<script src="constants.js"></script>
<script src="setup.js"></script>
<script src="sketch.js"></script>
</head>
<body style="margin: 0; background: black; overflow: hidden;">
</body>
</html>