-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANTS!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="Images/favicon.ico">
<script src="libraries/p5.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
<script src="Classes/ants/ants.js"></script>
<script src="Classes/resources.js"></script>
<script src="Classes/terrianGen.js"></script>
<script src="Classes/pathfinding.js"></script>
<script src="Classes/coordinateSystem.js"></script>
<script src="Classes/entities/sprite2d.js"></script>
<script src="Classes/entities/stats.js"></script>
<script src="Classes/ants/species.js"></script>
<script src="Classes/ants/antWrapper.js"></script>
<script src="Classes/selectionBox.js"></script>
<script src="Classes/menu.js"></script>
<script src="Classes/grid.js"></script>
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>